View PPTM in Java
Java API for opening PPTM files and saving them as HTML.
View PPTM using Aspose.Slides
Aspose.Slides for Java is a Java library for opening, viewing, editing, and converting presentation files. You can load PPTM files and save them as HTML for viewing in a browser.
View PPTM in Java
Using Aspose.Slides for Java , you can load a PPTM presentation and save it as responsive HTML with a few lines of code.
Java code for viewing PPTM
Presentation presentation = new Presentation("presentation.pptm");
try {
ResponsiveHtmlController controller = new ResponsiveHtmlController();
HtmlOptions htmlOptions = new HtmlOptions();
htmlOptions.setHtmlFormatter(HtmlFormatter.createCustomFormatter(controller));
presentation.save("index.html", SaveFormat.Html, htmlOptions);
} finally {
presentation.dispose();
}
How to view PPTM in Java
Install Aspose.Slides for Java. See Installation .
Add the library as a reference in your project.
Load the
PPTMfile with thePresentationclass.Create a
ResponsiveHtmlControllerobject for responsive HTML output.Create an
HtmlOptionsobject and set theHtmlFormatterproperty.Save the PPTM presentation as HTML with
SaveFormat.Html.
View other files
You can also open and view presentations in other formats.