Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active September 28, 2021 14:59
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/1aa7b2386c8905d53478b28926a1b7e6 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/1aa7b2386c8905d53478b28926a1b7e6 to your computer and use it in GitHub Desktop.
Convert PowerPoint PPTX PPT to HTML in Android
// Load presentation
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);
// Load presentation
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