Convert POTX to FODP in Python
Save a POTX presentation template in the flat XML-based FODP format with Aspose.Slides for Python via Java.
Convert POTX to FODP in Python
Aspose.Slides for Python via Java
can load a PowerPoint Open XML template (POTX) and save it as an FODP file. FODP stores an OpenDocument presentation as a single flat XML document, which can simplify inspection, version control, and automated processing.
Convert POTX to FODP using Python
Create a Presentation from the POTX file, then call save with SaveFormat.Fodp.
Python code for converting POTX to FODP
presentation = Presentation("presentation.potx")
try:
presentation.save("presentation.fodp", SaveFormat.Fodp)
finally:
presentation.dispose()
How to convert POTX to FODP in Python
Follow these steps to convert a PowerPoint Open XML template to flat XML-based FODP format.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source POTX file with
Presentation.Call
savewithSaveFormat.Fodpto create the FODP file.
Convert POTX to Other Supported Formats
You can also convert POTX presentation templates to other supported file formats.