Convert FODP to PPTX in Python
Transform an FODP presentation into an editable PPTX file with Aspose.Slides for Python via Java.
Convert FODP to PPTX in Python
Aspose.Slides for Python via Java can load an FODP presentation and save it as a PPTX file while preserving its slides and content. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.
Convert FODP to PPTX using Python
Create a Presentation from the FODP file, then call save with SaveFormat.Pptx.
Python code for converting FODP to PPTX
presentation = Presentation("presentation.fodp")
try:
presentation.save("presentation.pptx", SaveFormat.Pptx)
finally:
presentation.dispose()
How to convert FODP to PPTX in Python
Follow these steps to convert an FODP presentation to PPTX format.
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.Pptxto create the PPTX file.
Convert FODP to Other Supported Formats
You can also convert FODP presentations to other supported file formats.