Convert PPS Slide Shows to PPT in Python
Save a PowerPoint slide show as an editable PPT presentation with Aspose.Slides for Python via Java.
Convert PPS to PPT in Python
Aspose.Slides for Python via Java can load a PowerPoint 97-2003 slide show (PPS) and save it as an editable PowerPoint 97-2003 presentation (PPT). PPS and PPT use the same legacy binary format, but PPT files open in editing mode by default. Microsoft PowerPoint is not required.
Convert PPS to PPT using Python
Create a Presentation from the PPS file, then call save with SaveFormat.Ppt.
Python code for converting PPS to PPT
presentation = Presentation("presentation.pps")
try:
presentation.save("presentation.ppt", SaveFormat.Ppt)
finally:
presentation.dispose()
How to convert PPS to PPT in Python
Follow these steps to convert a PowerPoint slide show to an editable PPT presentation.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source PPS file with
Presentation.Call
savewithSaveFormat.Pptto create the PPT presentation.
Convert PPS to Other Supported Formats
You can also convert PPS slide shows to other supported file formats.