Ghostbuster
PHP wrapper for Ghostscript, (*1)
This library is still work in progress and should not be used in a production environment, (*2)
Installation
Using composer
You can install this module via composer by running the following
command in your application's root directory:, (*3)
$ ./composer.phar require rovak/ghostbuster
Usage
Documentation will be added when the API is stable, (*4)
$document = new \Ghostbuster\Document\Document('document.pdf');
$batch = new \Ghostbuster\Renderer\Batch();
$batch ->addDocument($document)
->addDocument($document->getRange(1,3))
->addDocument($document->getRange(2,2))
->output('result.pdf');