# Convert PPS to BMP in Python

> Convert PPS presentation slides to BMP images in Python with Aspose.Slides for Python via Java.

Source: https://products.aspose.com/slides/python-java/conversion/pps-to-bmp/
Updated: 2026-07-21



## Convert PPS to BMP in Python

[**Aspose.Slides for Python via Java**](/slides/python-java/) can load a PowerPoint 97–2003 slide show (`PPS`), render its slides, and save each rendered slide as a `BMP` image. The conversion does not require Microsoft PowerPoint.

## Convert PPS to BMP using Python

Create a `Presentation` from the PPS file, access each slide through a variable, call `getImage`, and save the rendered image with `ImageFormat.Bmp`.

### Python code for converting PPS slides to BMP

```python
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, 2)
        try:
            file_path = f"slide-{slide_index + 1}.bmp"
            slide_image.save(file_path, ImageFormat.Bmp)
        finally:
            slide_image.dispose()
finally:
    presentation.dispose()
```

## How to convert PPS slides to BMP in Python

Follow these steps to render the slides in a PowerPoint 97–2003 slide show as separate BMP images.

Install [**Aspose.Slides for Python via Java**](https://docs.aspose.com/slides/python-java/installation/).

Configure the package and start the Java Virtual Machine in your application.

Open the source PPS file with `Presentation` and access each slide through a variable.

Call `getImage` for each slide and save the result with `ImageFormat.Bmp`.

## Convert PPS to Other Supported Formats

- [PPS TO PPTX](/slides/python-java/conversion/pps-to-pptx/)
- [PPS TO PPT](/slides/python-java/conversion/pps-to-ppt/)
- [PPS TO PDF](/slides/python-java/conversion/pps-to-pdf/)
- [PPS TO HTML](/slides/python-java/conversion/pps-to-html/)
- [PPS TO PNG](/slides/python-java/conversion/pps-to-png/)
- [PPS TO JPG](/slides/python-java/conversion/pps-to-jpg/)
- [PPS TO FODP](/slides/python-java/conversion/pps-to-fodp/)
- [PPS TO GIF](/slides/python-java/conversion/pps-to-gif/)
- [PPS TO ODP](/slides/python-java/conversion/pps-to-odp/)
- [PPS TO OTP](/slides/python-java/conversion/pps-to-otp/)
- [PPS TO POT](/slides/python-java/conversion/pps-to-pot/)
- [PPS TO POTM](/slides/python-java/conversion/pps-to-potm/)
- [PPS TO POTX](/slides/python-java/conversion/pps-to-potx/)
- [PPS TO PPSM](/slides/python-java/conversion/pps-to-ppsm/)
- [PPS TO PPSX](/slides/python-java/conversion/pps-to-ppsx/)
- [PPS TO PPTM](/slides/python-java/conversion/pps-to-pptm/)
- [PPS TO SVG](/slides/python-java/conversion/pps-to-svg/)
- [PPS TO TIFF](/slides/python-java/conversion/pps-to-tiff/)
