Convert FODP Presentations to POTX in Python
Save an FODP presentation in the Open XML POTX format with Aspose.Slides for Python via Java.
Convert FODP to POTX in Python
Aspose.Slides for Python via Java can load an FODP presentation and save it in the macro-free POTX presentation format based on Office Open XML. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.
Convert FODP to POTX using Python
Create a Presentation from the FODP file and call save with SaveFormat.Potx to create the POTX file.
Python code for converting FODP to POTX
presentation = Presentation("presentation.fodp")
try:
presentation.save("presentation.potx", SaveFormat.Potx)
finally:
presentation.dispose()
How to convert FODP to POTX in Python
Follow these steps to save an FODP presentation in the macro-free POTX 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.Potxto write the POTX file.
Convert FODP to Other Supported Formats
You can also convert FODP presentations to other supported file formats.