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.

  1. Install Aspose.Slides for Python via Java .

  2. Configure the package and start the Java Virtual Machine in your application.

  3. Open the source FODP file with Presentation.

  4. Call save with SaveFormat.Pptx to create the PPTX file.