Convert PPTX to PPT in Java
Overview
This article explains how to convert PowerPoint Presentation in PPTX format into PPT format using Java. The following topic is covered.
- Convert PPTX to PPT in Java
Convert PPTX to PPT in Java
For Java sample code to convert PPTX to PPT, please see the section below i.e. Convert PPTX to PPT. It just loads the PPTX file and saves in PPT format. By specifiying different save formats, you can also save PPTX file into many other formats like PDF, XPS, ODP, HTML etc. as disscussed in these articles.
- Java Convert PPTX to PDF
- Java Convert PPTX to XPS
- Java Convert PPTX to HTML
- Java Convert PPTX to ODP
- Java Convert PPTX to Image
Convert PPTX to PPT
To convert a PPTX to PPT simply pass the file name and save format to the Save method of Presentation class. The Java code sample below converts a Presentation from PPTX to PPT using default options.
// instantiate a Presentation object that represents a PPTX file
Presentation presentation = new Presentation("template.pptx");
// save the presentation as PPT
presentation.save("output.ppt", SaveFormat.Ppt);
FAQ
Do all PPTX effects and features survive when saving to the legacy PPT (97–2003) format?
Not always. The PPT format lacks some newer capabilities (e.g., certain effects, objects, and behaviors), so features may be simplified or rasterized during conversion.
Can I convert only selected slides to PPT instead of the entire presentation?
Direct saving targets the whole presentation. To convert specific slides, create a new presentation with just those slides and save it as PPT; alternatively, use a service/API that supports per-slide conversion parameters.
Are password-protected presentations supported?
Yes. You can detect whether a file is protected, open it with a password, and also configure protection/encryption settings for the saved PPT.