PHP code example of nayzawoo / pdf-to-image
1. Go to this page and download the library: Download nayzawoo/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/ */
nayzawoo / pdf-to-image example snippets
use NayZawOo\PdfToImage\PDF;
$pdf = new PDF('example/source.pdf', [
'dpi' => 70, // default 300
'page' => 1, // convert second page, default: 0
'all_pages' => true, // default: false
]);
$pdf->saveAsImage('example/output.png'); // output png
$pdf->saveAsImage('example/output.jpg'); // output jpg
$pdf->saveAsImage('example/output.jpeg'); // output jpg