# Convert PPSX to BMP in PHP

> Sample PHP code for converting slides in PPSX presentations to BMP images with Aspose.Slides for PHP via Java.

Source: https://products.aspose.com/slides/php-java/conversion/ppsx-to-bmp/
Updated: 2026-08-11



## Convert PPSX to BMP in PHP

Need to convert PPSX files to BMP programmatically? With [*Aspose.Slides for PHP via Java*](/slides/php-java/), you can render every slide in a PPSX presentation as a BMP image with a few lines of PHP code.

Aspose.Slides provides a straightforward presentation-processing API for PPSX-to-BMP conversion. You can also test presentation conversions in your [browser](https://products.aspose.app/slides/conversion) or export PPSX files to many other supported formats.

You can install the library from [Composer](https://packagist.org/packages/aspose/slides) using the following command:

### Console/Terminal

```console
composer require aspose/slides
```

## How to Convert PPSX to BMP in PHP

These are the steps to convert a PPSX file to BMP using PHP.

Load the PPSX file into a `Presentation` instance.

Access each slide through a variable and call its `getImage` method.

Save each slide image to the generated file path with `ImageFormat::Bmp`.

## System Requirements

Before running the PHP conversion sample, make sure that you have the following prerequisites.

1. Install PHP 7, add the PHP directory to the system `PATH`, and set `allow_url_include` to `On` in `php.ini`.
1. Install JRE 8 and set the `JAVA_HOME` environment variable to the installed JRE directory.
1. Install Apache Tomcat 8.0 as described in the [installation guide](https://docs.aspose.com/slides/php-java/installation/).

### This sample code shows PPSX to BMP PHP Conversion

```php
$presentation = new Presentation("input.ppsx");
try {
    $slideCount = java_values($presentation->getSlides()->size());

    for ($slideIndex = 0; $slideIndex < $slideCount; $slideIndex++) {
        $slide = $presentation->getSlides()->get_Item($slideIndex);
        $slideImage = $slide->getImage(1, 1);

        try {
            $filePath = "slide_" . ($slideIndex + 1) . ".bmp";
            $slideImage->save($filePath, ImageFormat::Bmp);
        } finally {
            $slideImage->dispose();
        }
    }
} finally {
    $presentation->dispose();
}
```

## Save PPSX as BMP in PHP

Use the free app to see a demonstration of the PPSX-to-BMP conversion process.

## Other Supported Conversions

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