Convert PPS Presentations to TIFF in Python

Render all slides in a PPS presentation as a multipage TIFF image with Aspose.Slides for Python via Java.

Convert PPS to TIFF in Python

Aspose.Slides for Python via Java can load a PPS slide show and render all its slides as pages in a multipage TIFF image. The conversion does not require Microsoft PowerPoint.

Convert PPS to TIFF using Python

Create a Presentation from the PPS file, then call save with SaveFormat.Tiff.

Python code for converting PPS to TIFF

presentation = Presentation("presentation.pps")
try:
    presentation.save("presentation.tiff", SaveFormat.Tiff)
finally:
    presentation.dispose()

How to convert PPS to TIFF in Python

Follow these steps to render a PPS presentation as a multipage TIFF image.

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

  4. Call save with SaveFormat.Tiff to create the multipage TIFF image.