Reputation: 508
Can anyone help me in converting a pptx into html view using docx4j.jar. Though I have gone through a lot of related questions already asked in this forum but none helped me. Please give me a brief conversion process(just name the related classes and their methods to invoke). Well, m doing all this in my "Android" app and dont want any third party software(need to open pptx within my app only).
Upvotes: 0
Views: 1279
Reputation: 15863
First, see jaxb-can-be-made-to-run-on-android
Next, try RenderAsSvgInHtml.java
Or, try the pptx to xhtml conversion in Java first, to confirm it is enough for your needs (before you go to the Android-related effort). At present, it is basically just text, lines and images, not custom shapes.
Disclosure: I wrote the stuff referenced above.
Upvotes: 1