DOCX
JPG
PDF
XML
PPT
POTX
Convert PPT to POTX in Java
Save PPT presentations as POTX files using Aspose.Slides for Java without Microsoft PowerPoint.
Convert PPT to POTX Using Java
Use
Aspose.Slides for Java
to load a PPT presentation and save it as a POTX 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 PPT to POTX via Java
Java developers can convert a PPT file to POTX in just a few lines of code.
- Load the
PPTfile with thePresentationclass. - Call the
savemethod with the output file path andSaveFormat.Potx. - The
POTXfile 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.
PPT to POTX Java Conversion Source Code
Presentation presentation = new Presentation("presentation.ppt");
try {
presentation.save("output.potx", SaveFormat.Potx);
} finally {
presentation.dispose();
}
Free App to Convert PPT to POTX
Convert presentations and slides online.
Other Supported Conversions
You can also convert PPT into many other file formats including the ones listed below.
PPT TO BMP (Bitmap Image)
PPT TO GIF (Graphical Interchange Format)
PPT TO HTML (Hyper Text Markup Language)
PPT TO JPEG (JPEG Image)
PPT TO ODP (OpenDocument Presentation Format)
PPT TO OTP (OpenDocument Standard Format)
PPT TO PDF (Portable Document Format)
PPT TO PNG (Portable Network Graphics)
PPT TO POT (Microsoft PowerPoint Template Files)
PPT TO POTM (Microsoft PowerPoint Template File)
PPT TO PPS (PowerPoint Slide Show)
PPT TO PPSM (Macro-enabled Slide Show)
PPT TO PPSX (PowerPoint Slide Show)
PPT TO PPTM (Macro-enabled Presentation File)
PPT TO PPTX (Open XML presentation Format)
PPT TO SVG (Scalable Vector Graphics)
PPT TO SWF (SWF Format)
PPT TO TIFF (Tagged Image Format)
PPT TO Video (Video File)
PPT TO Word (Microsoft Word Document)
PPT TO XPS (XML Paper Specifications)