After converting the ODP to PPTX, we’re facing lots of issues. Can you please check and help to resolve it? I’ve attached the sample odp & converted PPTX in this link.
Note : we’re using aspose-slides-20.12-jdk16.jar.
Sample code :
Presentation pres = new Presentation("Sample.odp");
try
{
// Saving the PPTX presentation to PPTX format
pres.save("ODPtoPPTX_out.pptx", SaveFormat.Pptx);
}
finally
{
if (pres != null) pres.dispose();
}