Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created February 9, 2021 16:14
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/8c0a42b70e108edd4a67e1f3913cba94 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/8c0a42b70e108edd4a67e1f3913cba94 to your computer and use it in GitHub Desktop.
PowerPoint to HTML using C#
// Load presentation
Presentation pres = new Presentation("presentation.pptx");
// Create HTML options
HtmlOptions htmlOpt = new HtmlOptions();
// Show hidden slides
htmlOpt.ShowHiddenSlides = true;
// Save the PPTX as HTML
pres.Save("presentation.html", SaveFormat.Html, htmlOpt);
// Load presentation
Presentation pres = new Presentation("presentation.pptx");
// Create HTML options
HtmlOptions htmlOpt = new HtmlOptions();
// Save the PPTX as HTML
pres.Save("presentation.html", SaveFormat.Html, htmlOpt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment