I have a sample code below to read a PDF document and convert to PNG. But i got the error below.
Fatal error: Uncaught ImagickException: PDFDelegateFailed `The system cannot find the file specified. ' @ error/pdf.c/ReadPDFImage/794 in C:\laragon\www\test\pdf2png.php:3 Stack trace: #0 C:\laragon\www\test\pdf2png.php(3): Imagick->__construct('C:/laragon/www/...') #1 {main} thrown in C:\laragon\www\test\pdf2png.php on line 3
<?php
$imagick = new Imagick('C:/laragon/www/test/ticket.pdf[0]');
$imagick->setImageFormat( 'png' );
file_put_contents('ticket.png', $imagick);
?>