I'd like to create a PowerPoint (not Javascript/HTML/PDF/Keynote/.mov) using code (any language, C preferred) for free.

(I've seen this SO question which references how to create them in C#)

Is this even possible? How can I write the raw bits that make up a PowerPoint file? Any good libraries for doing this?

UPDATE The Microsoft Reference Page for the binary format is here.

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

Open Office has an API. You can use the C++ bindings (doc available here). If you really need C, you'll have to do some wrapping.. but hey, it's Christmas, isn't it ;-)

Open Office has export functions to create .ppt compatible files.

link|improve this answer
feedback

PowerPoint you may not, but OpenOffice Impress you may. (Yoda style answer :) )

Take a look at the ODF Toolkit project. They aim to produce lots of libraries for generating this kind of content programatically.

link|improve this answer
5  
Up voted you I have, link you must provide. – Tim Post Nov 30 '09 at 18:02
Link you have now. odftoolkit.openoffice.org :) – Kico Lobo Nov 30 '09 at 18:03
1  
Update your answer, you should ;-) – jldupont Nov 30 '09 at 18:11
feedback

If you don't mind going to Java, Apache POI provides readers and writers for most MS Office formats (up to the 2003 version anyway).

link|improve this answer
feedback

keywords, package: unoconv phppowerpoint application/vnd.ms-powerpoint

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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