This package provides a class to extract images from a pdf.
use Viterbit\PdfImagesExtractor\Pdf;
$images = Pdf::getImages('book.pdf'); //returns a FilesystemIterator
Behind the scenes this package leverages pdfimages. You can verify if the binary installed on your system by issuing this command:
which pdfimages
If it is installed it will return the path to the binary.
To install the binary you can use this command on Ubuntu or Debian:
apt-get install poppler-utils
On a mac you can install the binary using brew
brew install poppler
If you're on RedHat or CentOS use this:
yum install poppler-utils
You can install the package via composer:
composer viterbit/pdfimages-extractor
Getting images from a pdf is easy.
$images = (new Pdf())
->setPdf('book.pdf')
->images();
Or easier:
$images = Pdf::getImages('book.pdf');
By default the package will assume that the pdftoimages
command is located at /usr/bin/pdftoimages
.
If it is located elsewhere pass its binary path to constructor
$images = (new Pdf('/custom/path/to/pdftoimages'))
->setPdf('book.pdf')
->images();
or as the second parameter to the getImages
static method:
echo Pdf::getText('book.pdf', '/custom/path/to/pdftoimages');
Sometimes you may want to use pdfimages options. To do so you can set them up using the setOptions
method.
$images = (new Pdf())
->setPdf('book.pdf')
->setOptions(['j', 'f 1'])
->images()
;
or as the third parameter to the getImages
static method:
$images = Pdf::getImages('book.pdf', null, ['j', 'f 1']);
Please note that successive calls to setOptions()
will overwrite options passed in during previous calls.
If you need to make multiple calls to add options (for example if you need to pass in default options when creating
the Pdf
object from a container, and then add context-specific options elsewhere), you can use the addOptions()
method:
$images = (new Pdf())
->setPdf('book.pdf')
->addOptions(['f 1'])
->images()
;
Please see CHANGELOG for more information about what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker. design agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
The MIT License (MIT). Please see License File for more information.