Convert FODP Presentations to PPSX in Python
Save an FODP presentation as a PowerPoint PPSX slide show with Aspose.Slides for Python via Java.
Convert FODP to PPSX in Python
Aspose.Slides for Python via Java can load an FODP presentation and save it as a PowerPoint PPSX slide show. PPSX is the XML-based PowerPoint Show format and 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 PPSX using Python
Create a Presentation from the FODP file and call save with SaveFormat.Ppsx to create the PPSX slide show.
Python code for converting FODP to PPSX
presentation = Presentation("presentation.fodp")
try:
presentation.save("presentation.ppsx", SaveFormat.Ppsx)
finally:
presentation.dispose()
How to convert FODP to PPSX in Python
Follow these steps to convert a flat XML OpenDocument presentation to a PowerPoint PPSX 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.Ppsxto write the PPSX slide show.
Convert FODP to Other Supported Formats
You can also convert FODP presentations to other supported file formats.