Convert PPTX to FODP in Python
Export PowerPoint presentations to Flat OpenDocument Presentation format with Aspose.Slides for Python via Java.
Convert PPTX to FODP in Python
Aspose.Slides for Python via Java
can load a PowerPoint presentation (.pptx) and save it as a Flat OpenDocument Presentation (.fodp). FODP stores an OpenDocument presentation as a single uncompressed XML file, which is useful for source control and XML-based processing. Microsoft PowerPoint is not required.
Convert PPTX to FODP using Python
Create a Presentation from the PPTX file, then call save with SaveFormat.Fodp.
Python code for converting PPTX to FODP
presentation = Presentation("presentation.pptx")
try:
presentation.save("presentation.fodp", SaveFormat.Fodp)
finally:
presentation.dispose()
How to convert PPTX to FODP in Python
Follow these steps to export a PPTX file as a Flat OpenDocument Presentation.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source PPTX file with
Presentation.Call
savewithSaveFormat.Fodpto create the FODP file.
Convert PPTX to Other Supported Formats
You can also convert PPTX presentations to other supported file formats.