Convert FODP Presentations to POT in Python
Save an FODP presentation in the PowerPoint 97-2003 POT format with Aspose.Slides for Python via Java.
Convert FODP to POT in Python
Aspose.Slides for Python via Java can load an FODP presentation and save it in the binary POT format used by PowerPoint 97-2003 presentation templates. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.
Convert FODP to POT using Python
Create a Presentation from the FODP file and call save with SaveFormat.Pot to create the POT file.
Python code for converting FODP to POT
presentation = Presentation("presentation.fodp")
try:
presentation.save("presentation.pot", SaveFormat.Pot)
finally:
presentation.dispose()
How to convert FODP to POT in Python
Follow these steps to convert an FODP presentation to the PowerPoint 97-2003 POT 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.Potto write the POT file.
Convert FODP to Other Supported Formats
You can also convert FODP presentations to other supported file formats.