Convert the PPTX presentation to HTML format
Converting presentations to HTML enables embedding slides in web pages, providing easy access and sharing for presentations in a browser-friendly format. The Slidize.Plugins library allows customization of the HTML export, such as scaling images, and even handling hidden slides. This is ideal for users who need to distribute presentations online while maintaining slide quality and structure.
using Slidize;
var options = new HtmlConverterOptions
{
PicturesCompression = PicturesCompressionLevel.Dpi330,
SlideImageScale = 2f
};
PresentationToHtmlConverter.Process("presentation.pptx", "output.html", options);