Convert PPTX to PPSX in Python
Save a PowerPoint presentation as an Open XML slide show with Aspose.Slides for Python via Java.
Convert PPTX to PPSX in Python
Aspose.Slides for Python via Java can load a PowerPoint presentation (PPTX) and save it as a macro-free Open XML slide show (PPSX). The converted file retains the presentation content and opens directly in slide show mode in compatible applications. Microsoft PowerPoint is not required.
Convert PPTX to PPSX using Python
Create a Presentation from the PPTX file, then call save with SaveFormat.Ppsx.
Python code for converting PPTX to PPSX
presentation = Presentation("presentation.pptx")
try:
presentation.save("presentation.ppsx", SaveFormat.Ppsx)
finally:
presentation.dispose()
How to convert PPTX to PPSX in Python
Follow these steps to convert a PowerPoint presentation to the PPSX slide show format.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source PPTX file with
Presentation.Call
savewithSaveFormat.Ppsxto create the PPSX slide show.
Convert PPTX to Other Supported Formats
You can also convert PPTX presentations to other supported file formats.