Hi! Where can I find pptx samples on some site, like there are docx samples on this site: http://www.docx4java.org/trac/docx4j/br ... order=name
/Simon
It is currently Mon Jan 13, 2025 8:34 pm
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(new java.io.File(inputFilePath));
org.docx4j.convert.out.pdf.PdfConversion c = new org.docx4j.convert.out.pdf.viaXSLFO.Conversion(wordMLPackage);
OutputStream os = new java.io.FileOutputStream(outputFilePath);
c.output(os, new PdfSettings() );
WordprocessingMLPackage wordprocessingMLPackage = WordprocessingMLPackage.createPackage();
// Add all the data including header, footer to the document
PdfConversion conversion = new Conversion(wordMLPackage);
conversion.output(byteArrayOutputStream, new PdfSettings());
Total posts 10116 • Total topics 2845 • Total members 2076