# Convert PPTX to PNG in PHP

> Convert PPTX slides to PNG images in PHP with Aspose.Slides. Use the sample code to render each slide in an Open XML PowerPoint presentation as a separate PNG file.

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



## Convert PPTX to PNG in PHP

Convert PPTX slides to PNG programmatically with [*Aspose.Slides for PHP via Java*](/slides/php-java/). Load an Open XML PowerPoint presentation and render every slide as an individual PNG image with a few lines of PHP code.

Aspose.Slides renders a slide through its `getImage` method and saves the result through the image object's `save` method. You can also try the PPTX-to-PNG conversion in your [browser](https://products.aspose.app/slides/conversion) before integrating it into your application.

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 PPTX to PNG in PHP

These are the steps to convert a PPTX file to PNG using PHP.

Load the PPTX file into a `Presentation` instance.

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

Save each rendered slide to the generated file path with `ImageFormat::Png`.

## System Requirements

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

1. Install PHP 7 or later, 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 PPTX-to-PNG conversion in PHP

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

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

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

## Save PPTX as PNG in PHP

Use the free app to see a demonstration of the PPTX-to-PNG conversion process.

## Other Supported Conversions

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