i want to convert .pdf file to .png file using Imagemagick php API.

we can do this from shell using this:

$convert sample.pdf sample_image.png

we can issue this command using php exec() function but due to some reason(security) i

disabled the execution of shell commands using php.

so now tell me the solution that how can i convert my .pdf file to .png file without using

the php exec() function?

there is another discussion about this here but it's not very clear.

-Thanks in advance
Peeyush Chandel

link|improve this question

73% accept rate
feedback

2 Answers

up vote 3 down vote accepted

you must have installed php5-imagick

$myurl = 'filename.pdf['.$pagenumber.']';
$image = new Imagick($myurl);
$image->setResolution( 300, 300 );
$image->setImageFormat( "png" );
$image->writeImage('newfilename.png');
link|improve this answer
This works great for me, except it throws an exception in writeImage. header("Content-type image/png"); echo $image; solves the problem. – Jeff Hines Dec 23 '11 at 0:05
feedback

but due to some reason(security) i disabled the execution of shell commands using php

You'll either need to re-enable the execution of shell commands, or install the ImageMagick PHP extension. See here on how to install it.

link|improve this answer
ImageMagick PHP extension is already installed but i need some simple example code for the solution of my problem,so please explain it with a PHP code example. – Peeyush Sep 30 '10 at 17:39
as i am new to Imagemagick that's why i am asking example – Peeyush Sep 30 '10 at 17:42
@Peeyush see @Luis' example – Pekka Sep 30 '10 at 17:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.