Convert PPSM Slide Shows to TIFF in Python
Render a macro-enabled PowerPoint slide show as a multipage TIFF image with Aspose.Slides for Python via Java.
Convert PPSM to TIFF in Python
Aspose.Slides for Python via Java can load a macro-enabled PowerPoint PPSM slide show and render all of its slides to a multipage TIFF image. The conversion does not require Microsoft PowerPoint.
Convert PPSM to TIFF using Python
Create a Presentation from the PPSM file and call save with SaveFormat.Tiff to create the TIFF image.
Python code for converting PPSM to TIFF
presentation = Presentation("presentation.ppsm")
try:
presentation.save("presentation.tiff", SaveFormat.Tiff)
finally:
presentation.dispose()
How to convert PPSM to TIFF in Python
Follow these steps to render a macro-enabled PowerPoint slide show as a multipage TIFF image.
Install Aspose.Slides for Python via Java .
Configure the package and start the Java Virtual Machine in your application.
Open the source PPSM file with
Presentation.Call
savewithSaveFormat.Tiffto create the multipage TIFF image.
Convert PPSM to Other Supported Formats
You can also convert PPSM presentations to other supported file formats.