Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created February 23, 2021 02:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/dadff50427de821c9fbb5dddaf81a528 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/dadff50427de821c9fbb5dddaf81a528 to your computer and use it in GitHub Desktop.
Convert PowerPoint PPTX PPT to HTML in Java
// Instantiate a Presentation object that represents a presentation file
Presentation presentation = new Presentation("presentation.pptx");
// Create HTML options
HtmlOptions htmlOpt = new HtmlOptions();
// Show hidden slides
htmlOpt.setShowHiddenSlides(true);
// Save the PPTX as HTML
presentation.save("presentation.html", SaveFormat.Html, htmlOpt);
// Instantiate a Presentation object that represents a presentation file
Presentation presentation = new Presentation("presentation.pptx");
// Create HTML options
HtmlOptions htmlOpt = new HtmlOptions();
// Save the PPTX as HTML
presentation.save("presentation.html", SaveFormat.Html, htmlOpt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment