Render PowerPoint presentations as HTML, PDF, and image files
Leave feedback
On this page
GroupDocs.Viewer for .NET allows you to render your presentations in HTML, PDF, PNG, and JPEG formats. You do not need to use Microsoft PowerPoint or other software to load and view presentations within your .NET application (web or desktop).
Create a Viewer class instance to get started with the GroupDocs.Viewer API. Pass a presentation you want to view to the class constructor. You can load the presentation from a file or stream. Call one of the Viewer.View method overloads to convert the presentation to HTML, PDF, or image format. These methods allow you to render the entire presentation or specific slides.
GroupDocs.Viewer can detect the document format automatically based on information in the file header.
Render presentations as HTML
Create an HtmlViewOptions class instance and pass it to the Viewer.View method to convert a presentation file to HTML. The HtmlViewOptions class properties allow you to control the conversion process. For instance, you can embed all external resources in the generated HTML file, minify the output file, and optimize it for printing. Refer to the following documentation section for details: Rendering to HTML.
Create an HTML file with embedded resources
To save all elements of an HTML page (including text, graphics, and stylesheets) into a single file, call the HtmlViewOptions.ForEmbeddedResources method and specify the output file name.
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Create an HTML file for each slide.// {0} is replaced with the current page number in the file name.varviewOptions=HtmlViewOptions.ForEmbeddedResources("page_{0}.html");viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Create an HTML file for each slide.
' {0} is replaced with the current page number in the file name.
DimviewOptions=HtmlViewOptions.ForEmbeddedResources("page_{0}.html")viewer.View(viewOptions)EndUsingEndSubEndModule
The following image demonstrates the result:
Create an HTML file with external resources
If you want to store an HTML file and additional resource files (such as fonts, images, and stylesheets) separately, call the HtmlViewOptions.ForExternalResources method and pass the following parameters:
The output file path format
The path format for the folder with external resources
The resource URL format
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Create an HTML file for each slide.// Specify the HTML file names and location of external resources.// {0} and {1} are replaced with the current page number and resource name, respectively.varviewOptions=HtmlViewOptions.ForExternalResources("page_{0}.html","page_{0}/resource_{0}_{1}","page_{0}/resource_{0}_{1}");viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Create an HTML file for each slide.
' Specify the HTML file names and location of external resources.
' {0} and {1} are replaced with the current page number and resource name, respectively.
DimviewOptions=HtmlViewOptions.ForExternalResources("page_{0}.html","page_{0}/resource_{0}_{1}","page_{0}/resource_{0}_{1}")viewer.View(viewOptions)EndUsingEndSubEndModule
The image below demonstrates the result. External resources are placed in a separate folder.
Generate pure HTML/CSS markup
Before version 24.5, the GroupDocs.Viewer for .NET was able to render presentations to the HTML in only one mode, which is heavily based on SVG images. Actually, the whole slide is converted to a single vector image in SVG format, and the HTML here is served only as a wrapper around a SVG element. This mode has an undeniable advantage of 100% accurate reproduction of the original presentation. In other words, what you see in MS PowerPoint when opening a presentation, this is exactly what you see in the web-browser after opening the same presentation in the GroupDocs.Viewer. This is possible because GroupDocs.Viewer scans the original presentation document and reproduces it by drawing every tiny element, every pixel on a SVG canvas while preserving the position, shape and orientation.
But because of its SVG-based nature this mode also has the disadvantages — the SVG markup is too complex, full-text search may not work as expected, and, actually, this is not the “real” HTML- and CSS-markup. So if you want to implement something like modification or post-processing the document after obtaining it from GroupDocs.Viewer, you may encounter troubles, because standard tools like HTML parsers or CSS queries usually are not working with SVG markup.
That’s why we represent the new HTML conversion mode for the Presentations — pure HTML/CSS mode. In this mode no SVG images are generated at all, only pure HTML and CSS markup.
By default this mode is disabled, and the existing SVG-based mode is activated. For enabling the new pure HTML/CSS conversion mode, please set the boolean flag RenderToPureHtml to true value in the PresentationOptions property of the HtmlViewOptions class.
Code example below shows converting the same presentation file to the pure HTML/CSS markup in two variations — with embedded and external resources:
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...stringinputPresentationPath="SamplePresentation.pptx";//preparing HTML options for embedded and external resourcesHtmlViewOptionsembeddedOptions=HtmlViewOptions.ForEmbeddedResources("slide_{0}_embedded.html");HtmlViewOptionsexternalOptions=HtmlViewOptions.ForExternalResources("slide_{0}.html","slide_{0}_{1}","slide_{0}_{1}");//enabling the pure HTML/CSS mode for both optionsembeddedOptions.PresentationOptions.RenderToPureHtml=externalOptions.PresentationOptions.RenderToPureHtml=true;using(Viewerviewer=newViewer(inputPresentationPath)){viewer.View(embeddedOptions);viewer.View(externalOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())DiminputPresentationPathAsString="SamplePresentation.pptx"'preparing HTML options for embedded and external resources
DimembeddedOptionsAsHtmlViewOptions=HtmlViewOptions.ForEmbeddedResources("slide_{0}_embedded.html")DimexternalOptionsAsHtmlViewOptions=HtmlViewOptions.ForExternalResources("slide_{0}.html","slide_{0}_{1}","slide_{0}_{1}")'enabling the pure HTML/CSS mode for both options
embeddedOptions.PresentationOptions.RenderToPureHtml=TrueexternalOptions.PresentationOptions.RenderToPureHtml=TrueUsingviewer=NewViewer(inputPresentationPath)viewer.View(embeddedOptions)viewer.View(externalOptions)EndUsingEndSubEndModule
Need to mention that this new pure HTML/CSS mode also has the next limitations and disadvantages:
Its fidelity is generally worse compared to the original SVG-based mode, especially on presentations with complex slides layout and sophisticated text formatting.
Resolution property of the PresentationOptions class is also not supported for this moment, the images are exported to the output HTML document in their original resolution.
RenderToSinglePage boolean property of the HtmlViewOptions class is not supported too, so every slide of the presentation will be saved to the distinct HTML document.
RenderResponsive boolean property of HtmlViewOptions class belongs to the existing SVG-based conversion mode, so its value is ignored while converting in pure HTML/CSS mode, — HTML- and CSS-markup are already 100% responsive.
We plan to add support for most of these missing features in the near future by constantly improving this new pure HTML/CSS converter, adding new features and fixing bugs.
Render presentations as PDF
Create a PdfViewOptions class instance and pass it to the Viewer.View method to convert a presentation file to PDF. The PdfViewOptions class properties allow you to control the conversion process. For instance, you can protect the output PDF file, reorder its pages, and specify the quality of document images. Refer to the following documentation section for details: Rendering to PDF.
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Create a PDF file for the presentation.// Specify the PDF file name.varviewOptions=newPdfViewOptions("output.pdf");viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Create a PDF file for the presentation.
' Specify the PDF file name.
DimviewOptions=NewPdfViewOptions("output.pdf")viewer.View(viewOptions)EndUsingEndSubEndModule
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Create a PNG image for each slide.// {0} is replaced with the current page number in the image name.varviewOptions=newPngViewOptions("output_{0}.png");// Set width and height.viewOptions.Width=950;viewOptions.Height=550;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Create a PNG image for each slide.
' {0} is replaced with the current page number in the image name.
DimviewOptions=NewPngViewOptions("output_{0}.png")' Set width and height.
viewOptions.Width=950viewOptions.Height=550viewer.View(viewOptions)EndUsingEndSubEndModule
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Create a JPEG image for each slide.// {0} is replaced with the current page number in the image name.varviewOptions=newJpgViewOptions("output_{0}.jpg");// Set width and height.viewOptions.Width=950;viewOptions.Height=550;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Create a JPEG image for each slide.
' {0} is replaced with the current page number in the image name.
DimviewOptions=NewJpgViewOptions("output_{0}.jpg")' Set width and height.
viewOptions.Width=950viewOptions.Height=550viewer.View(viewOptions)EndUsingEndSubEndModule
Specify image resolution
When you convert presentations with high-resolution images to other formats, you may need to lower image resolution to reduce the output file size. GroupDocs.Viewer supports the PresentationOptions.Resolution option that allows you to compress images in the output HTML and PDF files. To access this option, use the HtmlViewOptions.PresentationOptions or PdfViewOptions.PresentationOptions property (depending on the output file format).
The following example shows how to specify image resolution in code:
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Convert the presentation to PDF.varviewOptions=newPdfViewOptions("output.pdf");// Specify resolution.viewOptions.PresentationOptions.Resolution=Resolution.Dpi150;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Convert the presentation to PDF.
DimviewOptions=NewPdfViewOptions("output.pdf")' Specify resolution.
viewOptions.PresentationOptions.Resolution=Resolution.Dpi150viewer.View(viewOptions)EndUsingEndSubEndModule
Render hidden slides
If your presentation contains hidden slides, enable the ViewOptions.RenderHiddenPages property for a target view to display these slides in the output HTML, PDF, or image files.
The following code example uses this option to display hidden slides in the generated PDF file:
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Convert the presentation to PDF.varviewOptions=newPdfViewOptions("output.pdf");// Enable hidden slides rendering.viewOptions.RenderHiddenPages=true;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Convert the presentation to PDF.
DimviewOptions=NewPdfViewOptions("output.pdf")' Enable hidden slides rendering.
viewOptions.RenderHiddenPages=Trueviewer.View(viewOptions)EndUsingEndSubEndModule
Render comments
Enable the ViewOptions.RenderComments option for a target view to display comments in the output file when you convert your presentation to HTML, PDF, PNG, or JPEG format.
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Convert the presentation to PDF.varviewOptions=newPdfViewOptions("output.pdf");// Enable comments rendering.viewOptions.RenderComments=true;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Convert the presentation to PDF.
DimviewOptions=NewPdfViewOptions("output.pdf")' Enable comments rendering.
viewOptions.RenderComments=Trueviewer.View(viewOptions)EndUsingEndSubEndModule
The following image demonstrates the result:
Render speaker notes
A presentation file can contain speaker notes that help presenters recall important information during the presentation. Speaker notes appear in the Notes pane below each slide.
Enable the ViewOptions.RenderNotes property for a target view to display speaker notes in the output HTML, PDF, or image files.
The following code sample renders a presentation with speaker notes to PDF:
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("sample.pptx")){// Convert the presentation to PDF.varviewOptions=newPdfViewOptions("output.pdf");// Enable speaker notes rendering.viewOptions.RenderNotes=true;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("sample.pptx")' Convert the presentation to PDF.
DimviewOptions=NewPdfViewOptions("output.pdf")' Enable speaker notes rendering.
viewOptions.RenderNotes=Trueviewer.View(viewOptions)EndUsingEndSubEndModule
The image below demonstrates the result.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.