Hi,
I am using Aspose.total with Developer OEM license. With Aspose slides, I am trying to convert a pptx file to pdf. The pptx file has 149 slides with total size of the file as 17.8 MB.
It takes 60 seconds on average for the file to be converted to pdf. But customer expects the result in 30 seconds. I use following code to convert pptx file to pdf.
com.aspose.slides.LoadOptions loadOptions = new com.aspose.slides.LoadOptions();
loadOptions.setWarningCallback(new SlidesFontWarning());
Presentation pres = new Presentation(GZIPInputStreamObject, loadOptions);
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
pres.save(outStream, com.aspose.slides.SaveFormat.Pdf);
Do I need to add any other configuration to speed up the file conversion?
For a pptx file with 149 slides and 17.8 MB size, With aspose, what is the expected time for the file to be converted to pdf.?
Regards,
Raz