Does anyone have any experience exporting a PDF to a PPT using the JRPptxExporter in Jasper Reports?
Here is the code that is supposed to do the export:
JRPptxExporter exporter = new JRPptxExporter ();
exporter.setParameter(JEExporterParameter.INPUT_FILE, new File("/path/to/my/pdf.pdf"));
exporter.setParameter(JEExporterParameter.OUTPUT_FILE, new File("/path/to/my/ppt.pptx"));
exporter.exportReport();
I can verify that the PDF is viewable using Adobe Acrobat.
No matter how I set the "INPUT" of the exporter I get a "StreamCorruptedException: invalid stream header" Exception.