POI is a low-level API for working with MS Office documents and conversion from PDF to PPT is beyond its scope.
In general, you will need third-party libraries for each format not directly supported by POI. You can use PDFBox (pdfbox.apache.org) to parse PDF documents. Perhaps, the simplest solution is to render PDF into per-page images and assemble a .ppt file from them. There are plenty Java APIs to work with RTF. iText can do both PDF and RTF but its is GPL-licenced. Another option is http://code.google.com/p/jrtf/ Yegor On Mon, May 30, 2011 at 1:00 AM, saman0suke <[email protected]> wrote: > Well, I'm already using the libraries, but I haven't seen anything regarding > getting info from a file(let's say PDF, RTF, etc) and putting it into a .ppt > format file, any help? thanks! > > -- > View this message in context: > http://apache-poi.1045710.n5.nabble.com/Export-file-to-PowerPoint-format-tp4435283p4437729.html > Sent from the POI - User mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
