# Convert POTM to PDF in PHP

> Convert a PowerPoint POTM template to PDF in PHP with Aspose.Slides for PHP via Java.

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



## Convert POTM to PDF in PHP

[*Aspose.Slides for PHP via Java*](/slides/php-java/) can load a macro-enabled PowerPoint POTM template and export it as PDF without Microsoft PowerPoint.

Call `save` with `SaveFormat::Pdf` to render the presentation into a fixed-layout PDF file suitable for viewing and printing. The PDF contains rendered presentation content and does not retain the VBA project from the source template.

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 POTM to PDF in PHP

These are the steps to convert a POTM file to PDF using PHP.

Load the POTM file with the `Presentation` class.

Call `save` with the output file path and `SaveFormat::Pdf`.

The PDF file is written to the specified path.

## System Requirements

Before running the PHP conversion example, 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 the `php.ini` file.
1. Install JRE 8 and set the `JAVA_HOME` environment variable to the installed JRE directory.
1. Install and configure Apache Tomcat with PHP/Java Bridge as described in the [installation guide](https://docs.aspose.com/slides/php-java/installation/).

### This sample code shows POTM to PDF PHP Conversion

```php
$presentation = new Presentation("input.potm");
try {
    $presentation->save("output.pdf", SaveFormat::Pdf);
} finally {
    $presentation->dispose();
}
```

## Save POTM as PDF in PHP

Use the free app to see a demonstration of the POTM to PDF conversion process.

## Other Supported Conversions

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