Convert FODP Presentations to PPS in Python
Save an FODP presentation as a legacy PowerPoint PPS slide show with Aspose.Slides for Python via Java.
Convert FODP to PPS in Python
Aspose.Slides for Python via Java can load an FODP presentation and save it as a PowerPoint 97–2003 PPS slide show. The PPS format is intended to open directly in slide show mode in compatible applications. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.
Convert FODP to PPS using Python
Create a Presentation from the FODP file and call save with SaveFormat.Pps to create the PPS slide show.
Python code for converting FODP to PPS
presentation = Presentation("presentation.fodp")
try:
presentation.save("presentation.pps", SaveFormat.Pps)
finally:
presentation.dispose()
How to convert FODP to PPS in Python
Follow these steps to convert a flat XML OpenDocument presentation to a legacy PowerPoint PPS slide show.
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.Ppsto write the PPS slide show.
Convert FODP to Other Supported Formats
You can also convert FODP presentations to other supported file formats.