PHP code example of drenso / pdf-to-image

1. Go to this page and download the library: Download drenso/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/ */

    

drenso / pdf-to-image example snippets


$pdf = new Drenso\PdfToImage\Pdf($pathToPdf);
$pdf->saveImage($pathToWhereImageShouldBeStored);

$pdf->getNumberOfPages(); //returns an int

$pdf->setPage(2)
    ->saveImage($pathToWhereImageShouldBeStored); //saves the second page

$pdf->setOutputFormat(ExportFormatEnum::PNG)
    ->saveImage($pathToWhereImageShouldBeStored); //the output wil be a png, no matter what

$pdf->setCompressionQuality(100); // sets the compression quality to maximum

$pdf
   ->setWidth(400)
   ->saveImage($pathToWhereImageShouldBeStored);