XDoc.PowerPoint
Features
Tech Specs
How-to C#
Pricing

C# PowerPoint Library
C# PowerPoint - Convert PowerPoint to HTML in C#.NET


How to Convert PowerPoint to HTML Webpage with C# PowerPoint Conversion SDK



Our PowerPoint to HTML converter library control is a 100% clean .NET document image solution, which is designed to help .NET developers convert PowerPoint to HTML webpage using simple C# code. This Visual C#.NET PowerPoint to HTML conversion control component makes it extremely easy for C# developers to convert and transform a multi-page PowerPoint document and save each PowerPoint page as a separate HTML file in .NET class application.

The HTML document file, converted by C#.NET PowerPoint to HTML converter toolkit SDK, preserves all the original anchors, links, bookmarks and font style that are included in target PowerPoint document file. Besides, the converted HTML webpage will have original formatting and interrelation of text and graphical elements of the PowerPoint.

This C#.NET PowerPoint to HTML conversion library can eliminate the crashing issue of web browser when it is trying to display a PowerPoint document file inside a browser window. Besides, this PowerPoint converting library also makes PowerPoint document visible and searchable on the Internet by converting PowerPoint document file into HTML webpage.


How to convert PowerPoint to html webpages using C#?

  1. Download XDoc.PowerPoint C# PPTX document library
  2. Install C# PPTX library to convert PPTX to html pages in .NET applications
  3. Step by Step Tutorial












C#: Convert PowerPoint Document to HTML5 Files

This is a C# programming example for converting PowerPoint to VectorImages(HTML5/SVG).

//load PowerPoint document
PPTXDocument docx = new PPTXDocument(@"C:\demoInput\demo.docx");

//convert to html5 files
docx.ConvertToVectorImages(ContextType.HTML, @"C:\htmlOutput\", "test", RelativeType.HTML);

//convert to svg files
docx.ConvertToVectorImages(ContextType.SVG, @"C:\svgOutput\", "test", RelativeType.SVG);