Does anyone know of any gems or plugins that can take a PowerPoint and
create images out of every slide and also access the text in each
slide?
not sure if this will help but google docs just started providing 3rd
party publishing/conversion from MS Office to google docs. perhaps
this can get you part of the way by converting and using the gdata gem
b
Hi,
I highly reccomend you Prezi http://prezi.com/
and not any MS product, since they are not free, and not open-source,
so if any company makes anything which can use it - it still mean that
you or some will pay for it in the end. And mostly PowerPoint is
really out of date.
cheers
Zoltn
My client has PowerPoint files and we need to process them into images
and text.
I was hoping there was something out there that could do this
directly.
If anyone else has suggestions, please post.
Thanks
Unfortunately that’s not going to work either.
I really need to process these either in my Rails app or through a 3rd
party service.
Anyone know of any SaaS or web services that would do this?
Thanks
On Nov 29, 2010, at 10:49 AM, Andy wrote:
My client has PowerPoint files and we need to process them into images
and text.I was hoping there was something out there that could do this
directly.If anyone else has suggestions, please post.
Thanks
Not on the server, but PowerPoint itself can output a Web site from
each file using File / Export. Something for a temp at your client’s
office to do all day long.
Walter
Andy wrote in post #965257:
Unfortunately that’s not going to work either.
I really need to process these either in my Rails app or through a 3rd
party service.Anyone know of any SaaS or web services that would do this?
Thanks
How about the Google Docs API?
Best,
–
Marnen Laibow-Koser
http://www.marnen.org
[email protected]
Sent from my iPhone
Let’s say the uploaded PPT is belong to Document model, and it’s pages
images are belong to DocumentPage model.
So you need to make Paperclip Processor, which you use in Document
model. Inside this Processor you need to:
- Create tmp folders where you will perform all operations
- Convert PPT to PDF using
http://www.artofsolving.com/opensource/pyodconverter - Convert PDF to TIFF images using ImageMagick.
- Process TIFF images with
Tesseract(tesseract-ocr · GitHub) to extract
keywords. - Convert TIFF to PNG
- Create DocumentPage models passing PNG images and extracted
keywords as a parameters. - If all DocumentPage models are created, just go out of Processor to
let the Document model be created.
Here is the Processor
https://gist.github.com/723079
It’s kinda messy and kinda belongs to my application, but you get the
idea.