Convert FODP Presentations to ODP in Python
Package a flat XML OpenDocument presentation as an ODP file with Aspose.Slides for Python via Java.
Convert FODP to ODP in Python
Aspose.Slides for Python via Java can load an FODP file, which stores an OpenDocument presentation as flat XML, and save it as a packaged ODP presentation. The conversion preserves the presentation structure and does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.
Convert FODP to ODP using Python
Create a Presentation from the FODP file and call save with SaveFormat.Odp to create the ODP presentation.
Python code for converting FODP to ODP
presentation = Presentation("presentation.fodp")
try:
presentation.save("presentation.odp", SaveFormat.Odp)
finally:
presentation.dispose()
How to convert FODP to ODP in Python
Follow these steps to convert a flat XML OpenDocument presentation to a packaged ODP file.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source FODP file with
Presentation.Call
savewithSaveFormat.Odpto write the packaged ODP file.
Convert FODP to Other Supported Formats
You can also convert FODP presentations to other supported file formats.