# Convert PPTX to BMP in Python

> Convert PPTX presentation slides to BMP images in Python. Use the Aspose.Slides Python API to render each slide as a separate bitmap file.

Source: https://products.aspose.com/slides/python-net/conversion/pptx-to-bmp/
Updated: 2026-08-11



## Convert PPTX to BMP in Python

[*Aspose.Slides for Python via .NET*](/slides/python-net/) lets you convert PPTX presentation slides to BMP images programmatically. Load the presentation, render each slide with `Slide.get_image`, and save the resulting `IImage` object in BMP format.

Each slide is rendered as a separate static bitmap image, so animations and transitions are not included in the BMP output. You can test the conversion in your [browser](https://products.aspose.app/slides/conversion) or use the Python API in your application.

Install the library from [PyPI](https://pypi.org/project/aspose-slides/) by using the following command:

### Console/Terminal

```console
pip install aspose-slides
```

## How to Convert PPTX to BMP in Python

Follow these steps to convert a PPTX file to BMP using Python.

Load the PPTX file into a `Presentation` instance.

Iterate through `Presentation.slides` and render each slide by using `Slide.get_image`.

Save each rendered image by using `IImage.save` with `ImageFormat.BMP`.

## System Requirements

Before running the Python conversion sample, make sure your environment meets these requirements.

- Microsoft Windows, macOS, or 64-bit Linux (see the [system requirements](https://docs.aspose.com/slides/python-net/system-requirements/)).
- Python 3.6 or later for this sample.
- Aspose.Slides for Python via .NET installed in your environment.

### This sample code shows how to convert PPTX to BMP in Python

```python
image_scale = 2

with slides.Presentation("presentation.pptx") as presentation:
    for slide in presentation.slides:
        file_path = f"presentation_slide_{slide.slide_number}.bmp"
        with slide.get_image(image_scale, image_scale) as slide_image:
            slide_image.save(file_path, slides.ImageFormat.BMP)
```

## Save PPTX as BMP in Python

Use the [free online app](https://products.aspose.app/slides/conversion) to see the PPTX-to-BMP conversion process in action.

## Other Supported Conversions

- [PPTX TO EMF](/slides/python-net/conversion/pptx-to-emf/) — Enhanced Metafile
- [PPTX TO FODP](/slides/python-net/conversion/pptx-to-fodp/) — OpenDocument Flat XML Presentation
- [PPTX TO GIF](/slides/python-net/conversion/pptx-to-gif/) — Graphics Interchange Format
- [PPTX TO HTML](/slides/python-net/conversion/pptx-to-html/) — Hypertext Markup Language
- [PPTX TO JPG](/slides/python-net/conversion/pptx-to-jpg/) — JPEG Image
- [PPTX TO ODP](/slides/python-net/conversion/pptx-to-odp/) — OpenDocument Presentation
- [PPTX TO OTP](/slides/python-net/conversion/pptx-to-otp/) — OpenDocument Presentation Template
- [PPTX TO PDF](/slides/python-net/conversion/pptx-to-pdf/) — Portable Document Format
- [PPTX TO PNG](/slides/python-net/conversion/pptx-to-png/) — Portable Network Graphics
- [PPTX TO POT](/slides/python-net/conversion/pptx-to-pot/) — PowerPoint 97-2003 Template
- [PPTX TO POTM](/slides/python-net/conversion/pptx-to-potm/) — Macro-Enabled PowerPoint Template
- [PPTX TO POTX](/slides/python-net/conversion/pptx-to-potx/) — PowerPoint Open XML Template
- [PPTX TO PPS](/slides/python-net/conversion/pptx-to-pps/) — PowerPoint 97-2003 Slide Show
- [PPTX TO PPSM](/slides/python-net/conversion/pptx-to-ppsm/) — Macro-Enabled PowerPoint Slide Show
- [PPTX TO PPSX](/slides/python-net/conversion/pptx-to-ppsx/) — PowerPoint Open XML Slide Show
- [PPTX TO PPT](/slides/python-net/conversion/pptx-to-ppt/) — PowerPoint 97-2003 Presentation
- [PPTX TO PPTM](/slides/python-net/conversion/pptx-to-pptm/) — Macro-Enabled PowerPoint Presentation
- [PPTX TO SVG](/slides/python-net/conversion/pptx-to-svg/) — Scalable Vector Graphics
- [PPTX TO SWF](/slides/python-net/conversion/pptx-to-swf/) — Shockwave Flash
- [PPTX TO TIFF](/slides/python-net/conversion/pptx-to-tiff/) — Tagged Image File Format
- [PPTX TO XPS](/slides/python-net/conversion/pptx-to-xps/) — XML Paper Specification
