I have installed Imagick dll successfully.I have followed following stackoverflow exmple
How do I convert a PDF document to a preview image in PHP?
following is my code
<?php
$im = new imagick('file.pdf[0]');
$im->setImageFormat('jpg');
header('Content-Type: image/jpeg');
echo $im;
?>
but i am now getting following error
Fatal error: Uncaught exception 'ImagickException' with message 'UnableToOpenBlob `demo.pdf': No such file or directory @ error/blob.c/OpenBlob/2657' in D:\xampp\htdocs\learn\index.php:2 Stack trace: #0 D:\xampp\htdocs\learn\index.php(2): Imagick->__construct('demo.pdf[0]') #1 {main} thrown in D:\xampp\htdocs\learn\index.php on line 2
Imagick dll installed propelry
Attached screnshot
Kindly some one help me how to fix this ?Thanks