PHP code example of spatie / pdf-to-image

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

    

spatie / 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

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