PHP code example of sprintechnology / pdf-to-image
1. Go to this page and download the library: Download sprintechnology/pdf-to-image library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sprintechnology / pdf-to-image example snippets
$pdf = new Spatie\PdfToImage\Pdf($pathToPdf);
$pdf->saveImage($pathToWhereImageShouldBeStored);
$pdf->getNumberOfPages(); //returns an int
$pdf->setPage(2)
->saveImage($pathToWhereImageShouldBeStored); //saves the second page
$pdf->setOutputFormat('png')
->saveImage($pathToWhereImageShouldBeStored); //the output wil be a png, no matter what
$pdf->setCompressionQuality(100); // sets the compression quality to maximum
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.