DOCX JPG PDF XML PPTM
  Product Family
PDF

Convert PPTM to PDF in Java

Save PPTM presentations as PDF files using Aspose.Slides for Java without Microsoft PowerPoint.

Convert PPTM to PDF Using Java

Use Aspose.Slides for Java to load a PPTM presentation and save it as a PDF file. You can install the aspose-slides package in a Maven-based project by adding the repository and dependency below.

Repository

<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java API</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Dependency

<dependency>
    <groupId>com.aspose</groupId>
    <artifactId>aspose-slides</artifactId>
    <version>version of aspose-slides API</version>
    <classifier>jdk17</classifier>
</dependency>

How to Convert PPTM to PDF via Java

Java developers can convert a PPTM file to PDF in just a few lines of code.

  1. Load the PPTM file with the Presentation class.
  2. Call the save method with the output file path and SaveFormat.Pdf.
  3. The PDF file will be saved at the specified path.

System Requirements

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

  • Microsoft Windows, Linux, macOS, or another OS with a supported Java Runtime Environment.
  • Get the latest version of Aspose.Slides for Java from Maven.
 

PPTM to PDF Java Conversion Source Code

Presentation presentation = new Presentation("presentation.pptm");
try {
    presentation.save("output.pdf", SaveFormat.Pdf);
} finally {
    presentation.dispose();
}
 

Free App to Convert PPTM to PDF

Convert presentations and slides online.

Other Supported Conversions

You can also convert PPTM into many other file formats including the ones listed below.

PPTM TO BMP (Bitmap Image)
PPTM TO GIF (Graphics Interchange Format)
PPTM TO HTML (Hypertext Markup Language)
PPTM TO JPEG (JPEG Image)
PPTM TO ODP (OpenDocument Presentation Format)
PPTM TO OTP (OpenDocument Presentation Template)
PPTM TO PNG (Portable Network Graphics)
PPTM TO POT (PowerPoint 97–2003 Template)
PPTM TO POTM (PowerPoint Macro-Enabled Template)
PPTM TO POTX (PowerPoint Template)
PPTM TO PPS (PowerPoint Slide Show)
PPTM TO PPSM (Macro-enabled Slide Show)
PPTM TO PPSX (PowerPoint Slide Show)
PPTM TO PPT (PowerPoint 97-2003 Presentation)
PPTM TO PPTX (Open XML Presentation Format)
PPTM TO SVG (Scalable Vector Graphics)
PPTM TO SWF (SWF Format)
PPTM TO TIFF (Tagged Image File Format)
PPTM TO XPS (XML Paper Specification)