Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to create a thumbnail image (preview) of the first page of pdf file using jQuery or any other javascript plugins/libraries?? I am using Apache server with php.

answer only if you have a suggestion / solution and use comments for other replys..

Thanks in advance...:)

blasteralfred

share|improve this question
This will not be easy/possible using Javascript in a web browser. What server-side language are you using (e.g. PHP, Java, ..)? – Adrian Smith Apr 16 '11 at 16:01
apache with php – blasteralfred Apr 16 '11 at 16:06

1 Answer

up vote 1 down vote accepted

Make a thumbnail on the php side and serve it up asynchronously if you need. It's a LOT easier than doing it in javascript. Check this out:

How do I convert a PDF document to a preview image in PHP?

You could theoretically do it in JS, but you'd have to make a pdf reader library and an image library. As far as I know, the JS pdf libraries that are out there never made it past pet project stage.

share|improve this answer
i already made a look @ dat.. But how can i install imagemagick and ghostscript if i am using a rental server service like awardspace.com??? – blasteralfred Apr 16 '11 at 16:22
The only way is to contact them. If you're nice about it and maybe be ready to provide instructions, they'll probably be accommodating to your needs. – Milimetric Apr 16 '11 at 18:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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