Convert PPS to JPG in Python

Render every slide in a PowerPoint Show as a high-quality JPEG image.

Convert PPS to JPG in Python

Aspose.Slides for Python via Java can render slides from a PowerPoint Show (.pps) file as JPG images without Microsoft PowerPoint. Because a JPG file stores a single image, the conversion creates a separate output file for each slide.

Use Presentation.getSlides to iterate through the source slides. For each Slide, call getImage and save the returned image with ImageFormat.Jpeg. The scaling values passed to getImage control the output dimensions relative to the original slide size.

How to Convert PPS to JPG in Python

Load the PPS file into a Presentation, render each slide with getImage, and save each result in JPEG format.

Python tutorial for converting PPS into JPG

presentation = Presentation("presentation.pps")
try:
    slide_count = presentation.getSlides().size()

    for slide_index in range(slide_count):
        slide = presentation.getSlides().get_Item(slide_index)
        slide_image = slide.getImage(2.0, 2.0)
        try:
            slide_number = slide_index + 1
            file_path = f"slide-{slide_number}.jpg"
            slide_image.save(file_path, ImageFormat.Jpeg)
        finally:
            slide_image.dispose()
finally:
    presentation.dispose()

Steps to Convert PPS to JPG in Python

The conversion renders each slide in the PPS presentation to a separate JPEG image.

  1. Install Aspose.Slides for Python via Java .

  2. Configure JPype and make the Aspose.Slides package available to your Python project.

  3. Create a Presentation from the source .pps file and determine the slide count.

  4. Access each Slide, call getImage, and save the result with ImageFormat.Jpeg.