Convert PPSX Files to FODP in Python
Export a PowerPoint slide show as a Flat OpenDocument Presentation with Aspose.Slides for Python via Java.
Convert PPSX to FODP in Python
Aspose.Slides for Python via Java
can load a PowerPoint Slide Show (.ppsx) and export it as a Flat OpenDocument Presentation (FODP). FODP stores the presentation in a single, uncompressed XML document. Microsoft PowerPoint, LibreOffice, and OpenOffice are not required for the conversion.
Convert PPSX to FODP using Python
Create a Presentation from the PPSX file, then call save with SaveFormat.Fodp.
Python code for converting PPSX to FODP
presentation = Presentation("presentation.ppsx")
try:
presentation.save("presentation.fodp", SaveFormat.Fodp)
finally:
presentation.dispose()
How to convert PPSX to FODP in Python
Follow these steps to export a PPSX 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 PPSX file with
Presentation.Call
savewithSaveFormat.Fodpto create the FODP file.
Convert PPSX to Other Supported Formats
You can also convert PPSX presentations to other supported file formats.