PowerPoint PPTX/PPT to HTML conversion could be useful when you need to embed the presentations within your web pages. Since PowerPoint files can not be displayed directly within the web applications, you can adopt PowerPoint to HTML conversion for creating slide shows. In accordance with that, this article covers how to convert slides in PowerPoint presentations to HTML using Java.
- Java PowerPoint to HTML Converter API
- Convert PowerPoint PPTX to HTML in Java
- PPT/PPTX to HTML Conversion with Hidden Slides
- Get a Free API License
Java PowerPoint to HTML Converter API
For PowerPoint to HTML conversion, we will use Aspose.Slides for Java. It is a powerful presentation manipulation API that lets you create, manipulate, and convert PowerPoint files quite easily. You can either download the API or install it via Maven.
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://repository.aspose.com/repo/</url>
</repository>
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-slides</artifactId>
<version>21.1</version>
<classifier>jdk16</classifier>
</dependency>
Convert PowerPoint PPTX to HTML in Java
The following are the steps to convert PowerPoint PPTX or PPT files to HTML using Java.
- First, load the PowerPoint presentation you want to convert using the Presentation class.
- Create an object of HtmlOptions class.
- Convert PPTX to HTML using Presentation.save(String, Int, HtmlOptions) method.
The following code sample shows how to convert a PowerPoint presentation to HTML using Java.
Java PPTX to HTML Conversion with Hidden Slides
PowerPoint also allows you to hide the desired slides within a presentation. By default, Aspose.Slides for Java do not include hidden slides in the PowerPoint to HTML conversion. However, you can customize this behavior of the API. The following are the steps to include hidden slides in conversion.
- Load the PPTX/PPT presentation you want to convert using the Presentation class.
- Create an object of HtmlOptions class.
- Include hidden slides using HtmlOptions.setShowHiddenSlides(true) method.
- Convert PPTX to HTML using Presentation.save(String, Int, HtmlOptions) method.
The following code sample shows how to include hidden slides in PowerPoint to HTML conversion using Java.
Get a Free API License
Aspose offers a free temporary license in order to try the API without evaluation limitations.
Conclusion
In this article, you have learned how to convert PowerPoint PPTX or PPT presentations to HTML using Java. Furthermore, you have seen how to include hidden slides in PowerPoint to HTML conversion. You can learn more about the Java presentation manipulation API using documentation.