library poppler-bundle
PHP Poppler
melnikoved/poppler-bundle
PHP Poppler
- Thursday, February 26, 2015
- by melnikoved
- Repository
- 1 Watchers
- 0 Stars
- 195 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 2 % Grown
MelnikovedPopplerBundle
This bundle allows you to merge pdf files with poppler util - pdfUnit, (*1)
Installation
Step 1: Download the bundle
Open your command console, browse to your project and execute the following:, (*2)
$ composer require melnikoved/poppler-bundle:dev-master
Step 2: Enable the bundle
``` php
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Melnikoved\PopplerBundle\MelnikovedPopplerBundle(),
);
}, (*3)
Usage
-----
For merging pdf files you should use service 'poppler'
``` php
$this->get('poppler')->merge($inputFileNames, $outputFileName);