Convert PPT to PPS in Python
Save a legacy PowerPoint presentation as a PPS slide show with Aspose.Slides for Python via Java.
Convert PPT to PPS in Python
Aspose.Slides for Python via Java
can load a legacy PowerPoint presentation (.ppt) and save it as a legacy PowerPoint slide show (.pps) without Microsoft PowerPoint. A PPS file opens directly in slide show mode in compatible presentation applications.
Load the source file with Presentation, then call save with SaveFormat.Pps.
Convert PPT to PPS using Python
Create a Presentation from the source PPT file, then call save with SaveFormat.Pps.
Python code for converting PPT to PPS
presentation = Presentation("presentation.ppt")
try:
presentation.save("presentation.pps", SaveFormat.Pps)
finally:
presentation.dispose()
How to convert PPT to PPS in Python
Follow these steps to save a PowerPoint PPT presentation as a legacy PPS slide show.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source PPT file with
Presentation.Call
savewithSaveFormat.Ppsand a.ppsoutput path.
Convert PPT to Other Supported Formats
You can also convert PPT presentations to other supported file formats.