Convert ODP to PPTX
Contents
[
Hide
]
Convert ODP to PPTX/PPT Presentation
Aspose.Slides for Android via Java offers Presentation class that represents a presentation file. Presentation class can now also access ODP through Presentation constructor when the object is instantiated. The following example shows how to convert a ODP Presentation into PPTX Presentation.
// Open the ODP file
Presentation pres = new Presentation("AccessOpenDoc.odp");
try {}
// Saving the ODP presentation to PPTX format
pres.save("AccessOpenDoc_out.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
Live Example
You can visit Aspose.Slides Conversion web app, which is built with Aspose.Slides API. The app demonstrates how ODP to PPTX conversion can be implemented with Aspose.Slides API.