# Convert POTM to POTX in PHP

> Convert a PowerPoint POTM template to a macro-free POTX template in PHP with Aspose.Slides for PHP via Java.

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



## Convert POTM to POTX in PHP

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

Call `save` with `SaveFormat::Potx` to create the POTX file. POTX cannot store VBA projects, so the VBA project from the source POTM template is not retained.

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 POTX in PHP

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

Load the POTM file with the `Presentation` class.

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

The POTX 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 POTX PHP Conversion

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

## Save POTM as POTX in PHP

Use the free app to see a demonstration of the POTM to POTX 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 PDF](/slides/php-java/conversion/potm-to-pdf/) — Portable Document Format
- [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 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
