Reputation: 412
How to get thumbs document
(doc, docx, pdf, pptx, ppt,.....)?
May be use C#, php, .....
Please help me! Thanks you very much!
Upvotes: 4
Views: 7492
Reputation: 95121
This has been asked before ... please see Live Thumbnails/Large Image for some examples
It only capture web sites but its the same for every other document types .... all you need to do is convert (doc, docx, pptx, ppt,.....) to pdf
or HTML
or image
... PDF is easier to work with but some online tools can also convert doc
to image
directly ..
When you have it pdf
you can easy convert it to jpg
then create a thumbnails form jpg
See more tools you can use
See
http://www.imagemagick.org/www/formats.html
exec("convert sample.pdf sample.jpeg")
See
http://www.phpclasses.org/package/5846-PHP-Convert-PDF-documents-to-images-using-Ghostscript.html
See
How do I convert a PDF document to a preview image in PHP?
I hope this helps
Thanks
:)
Upvotes: 4