Convert PPSX Presentations to TIFF in Python

Render all slides in a PowerPoint slide show as a multipage TIFF image with Aspose.Slides for Python via Java.

Convert PPSX to TIFF in Python

Aspose.Slides for Python via Java can load a PowerPoint Slide Show (.ppsx) and render all its slides as pages in a multipage TIFF image. The conversion does not require Microsoft PowerPoint.

Convert PPSX to TIFF using Python

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

Python code for converting PPSX to TIFF

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

How to convert PPSX to TIFF in Python

Follow these steps to render a PowerPoint PPSX slide show 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 PPSX file with Presentation.

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