Convert PPT to ODP in Python
Save a legacy PowerPoint presentation in OpenDocument Presentation format with Aspose.Slides for Python via Java.
Convert PPT to ODP in Python
Aspose.Slides for Python via Java
can load a legacy PowerPoint presentation (.ppt) and save it in OpenDocument Presentation (.odp) format. The conversion preserves supported slide content, layouts, and formatting without requiring Microsoft PowerPoint.
Convert PPT to ODP using Python
Create a Presentation from the source PPT file, then call save with SaveFormat.Odp.
Python code for converting PPT to ODP
presentation = Presentation("presentation.ppt")
try:
presentation.save("presentation.odp", SaveFormat.Odp)
finally:
presentation.dispose()
How to convert PPT to ODP in Python
Follow these steps to save a PowerPoint PPT presentation in OpenDocument Presentation format.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source PPT file with
Presentation.Call
savewithSaveFormat.Odpand an.odpoutput path.
Convert PPT to Other Supported Formats
You can also convert PPT presentations to other supported file formats.