vote up 8 vote down star
12

Our environment is a LAMP stack.

I'm wondering what libraries/extensions etc. would be required to convert a portion of a PDF document into 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 displaying on a web page.

flag

2 Answers

vote up 15 vote down check

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|flag
yes, it works. You can also do: $im->setResolution( 300, 300 ) for example to render your pdf at desire resolution. – Luis Melgratti Jan 22 at 2:16
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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