Reputation: 5407
Is there a way in C or Objective-C to convert presentation files (.ppt/.key) into a set of images?
many thanks!
Upvotes: 1
Views: 1577
Reputation: 71
For PowerPoint, you can get each slide, present it through UIWebView and capture the image from view IOS library to convert powerpoint presentations into images
Upvotes: 1
Reputation: 3613
PowerPoint for Mac offers a Save as Pictures open in the File menu that sounds like what you are looking for.
Upvotes: 0
Reputation: 2290
It would be more helpful to know why you want to do this, but on mac, it's possible to do this kind of thing with javascript and it's possible to call javascript from within cocoa
I doubt you'll have any luck if you want to do it in iOS.
Upvotes: 0
Reputation: 13860
I doubt. ppt file is the fact XML style document. So if you want to parse it you have to write a XML parser who puts element in the exact position... So in fact you have to create your own powerpoint.
But, you might (both PowerPoint and Keynote) consider to export presentation to pdf, and then this will be a lot simpler.
Upvotes: 1