Convert OTP Templates to PPS in Python

Save an OpenDocument presentation template as a legacy PowerPoint PPS slide show with Aspose.Slides for Python via Java.

Convert OTP to PPS in Python

Aspose.Slides for Python via Java can load an OTP presentation template and save it as a PowerPoint 97-2003 PPS slide show. The PPS format is intended to open directly in slide show mode in compatible applications. The conversion does not require Microsoft PowerPoint, LibreOffice, or OpenOffice.

Convert OTP to PPS using Python

Create a Presentation from the OTP file and call save with SaveFormat.Pps to create the PPS slide show.

Python code for converting OTP to PPS

presentation = Presentation("presentation.otp")
try:
    presentation.save("presentation.pps", SaveFormat.Pps)
finally:
    presentation.dispose()

How to convert OTP to PPS in Python

Follow these steps to convert an OpenDocument presentation template to a legacy PowerPoint PPS slide show.

  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 OTP file with Presentation.

  4. Call save with SaveFormat.Pps to write the PPS slide show.