What libraries, extensions etc. would be required to render a portion of a PDF document to an image file?

Most PHP PDF libraries that I have found center around creating PDF documents, but is there a simple way to render a document to an image format suitable for web use?

Our environment is a LAMP stack.

link|improve this question

feedback

8 Answers

up vote 52 down vote accepted

You need ImageMagick and GhostScript

<?php
$im = new imagick('file.pdf[0]');
$im->setImageFormat( "jpg" );
header( "Content-Type: image/jpeg" );
echo $im;
?>

The [0] means page 1.

link|improve this answer
6  
yes, it works. You can also do: $im->setResolution( 300, 300 ) for example to render your pdf at desire resolution. – Luis Melgratti Jan 22 '09 at 2:16
feedback

to add:

you can also get the page count using $im->getNumberImages();

then you can can create thumbs of all the pages using a loop, eg. 'file.pdf['.$x.']'

link|improve this answer
feedback

For those who don't have ImageMagick for whatever reason, GD functions will also work, in conjunction with GhostScript. Run the ghostscript command with exec() to convert a PDF to JPG, and manipulate the resulting file with imagecreatefromjpeg().

link|improve this answer
1  
Could you provide and example of your method? – Chill Web Designs Jul 9 '11 at 12:42
2  
Run the ghostscript command: exec('gs -dSAFER -dBATCH -sDEVICE=jpeg -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -r300 -sOutputFile=whatever.jpg input.jpg'). To manipulate, create a new placeholder image, $newimage = imagecreatetruecolor(...), and bring in the current image. $image = imagecreatefromjpeg('whatever.jpg'), and then you can use imagecopyresampled() to change the size, or any number of other built-in, non-imagemagick commands. – Andrew Jul 18 '11 at 18:23
feedback

If you're loading the PDF from a blob this is how you get the first page instead of the last page:

$im->readimageblob($blob);
$im->setiteratorindex(0);
link|improve this answer
feedback

I install finished! It's worked!

You may be do base install imagemagick on windows.

In php (local) use call exec(<command line>) ex:

<?php
$pdf = "filename.pdf";
$info = pathinfo($pdf);
$file_name =  basename($pdf,'.'.$info['extension']);
echo $file_name;
$pdf = "filename.pdf[0]";
exec("convert $pdf convert-img/$file_name.jpg");    
?>

Besides, you may be use class imagick in PHP Imagick class

Thanks all helped me!

link|improve this answer
feedback

Here is a simple class I've written and used on a couple of projects. It just wraps imagick and handles writing each page out to disk. If anyone is still looking for an easy way to do this, it might be helpful:

https://github.com/snyderp/PES_File_PDF_Splitter

link|improve this answer
feedback

You can also try this:

exec("convert pdf_doc.pdf image.jpg");
echo 'image-0.jpg';
link|improve this answer
feedback
<?php
$im = new imagick();
$im->setImageFormat( "jpg" );
$im->setResolution( 300, 300 );
$width=$im->getImageWidth();
if ($width > 200) { $im->thumbnailImage(200,null,0); }
$height=$im->getImageHeight();
if ($height > 82) { $im->thumbnailImage(null,82,0); }
header( "Content-Type: image/jpeg" );
$im->readImage('baitaptoan_roi_rac.pdf');
echo $im;
?>

Fatal error: Class 'imagick' not found in D:\wEbMaStEr\localhost\www\getthumbs\getthumbs.php on line 2

link|improve this answer
feedback

protected by Paolo Bergantino May 23 at 21:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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