Convert PPS Files to FODP in Python
Export a PowerPoint 97–2003 slide show as a Flat OpenDocument Presentation with Aspose.Slides for Python via Java.
Convert PPS to FODP in Python
Aspose.Slides for Python via Java
can load a PowerPoint 97–2003 slide show (PPS) and export it as a Flat OpenDocument Presentation (FODP). The conversion stores the presentation in a flat XML-based format and does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.
Convert PPS to FODP using Python
Create a Presentation from the PPS file, then call save with SaveFormat.Fodp.
Python code for converting PPS to FODP
presentation = Presentation("presentation.pps")
try:
presentation.save("presentation.fodp", SaveFormat.Fodp)
finally:
presentation.dispose()
How to convert PPS to FODP in Python
Follow these steps to export a PowerPoint 97–2003 slide show 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 PPS file with
Presentation.Call
savewithSaveFormat.Fodpto create the FODP file.
Convert PPS to Other Supported Formats
You can also convert PPS slide shows to other supported file formats.