Reputation: 454
Are there methods in using rails to convert document files into image in order to display them as jpg or png. Perhaps there is a gem that can handle this
Upvotes: 1
Views: 1111
Reputation: 14625
Here are some common ones:
PS: you can convert PDFs to JPG to using RMagick :)
Edit: Converting MS Office Documents to images can be done using OpenOffice - here are two solutions:
openoffice.org2.4 -norestore -nofirststartwizard -nologo -headless -pt Cups-PDF sample.ppt
and then you can convert the PDF to an image.
Upvotes: 2