Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to convert pptx to an image? My aim is to finally generate an PDF file. I try with Aspose but there are some issue. With Apache POI, it don't support PPTX. Any other idea?

share|improve this question

2 Answers

There is a PPTX SVGExporter in DocX4j that may help you, in conjonction with Batik (from SVVG to PDF)

Note : I've not tested it

share|improve this answer
I tested it already, i is some bugs with. I don't have the background, the style is not very good etc. – Ophelie Jun 6 '11 at 14:25
Yes, SVG export in pptx4j is a work in progress. Support is currently limited to text boxes and images; arbitrary VML & DrawingML is not converted to SVG. But it is open source, and if you don't need all those other shapes, scratching your itch might be within your grasp. – JasonPlutext Jun 28 '11 at 11:29

You may be able to write a small native library that Java calls to do the operation. I'm pretty sure you can use a .NET language or C++ to connect to powerpoint and have it "print" to either PDF or some other usable format. Here is a small sample application which does some automation.

share|improve this answer
I find the following code : blogs.msdn.com/b/pranab/archive/2008/09/24/… How can I use it in Java? or maybe I can re-write it, but I don't know how to convert a reference. – Ophelie Jun 6 '11 at 14:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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