Render Word documents as HTML, PDF, and image files
Leave feedback
On this page
GroupDocs.Viewer for .NET allows you to render your Microsoft Word documents in HTML, PDF, PNG, and JPEG formats. You do not need to use Microsoft Word or other word processors to load and view Word documents within your .NET application (web or desktop).
To start using the GroupDocs.Viewer API, create a Viewer class instance. Pass a document you want to view to the class constructor. You can load the document from a file or stream. Call one of the Viewer.View method overloads to convert the document to HTML, PDF, or image format. These methods allow you to render the entire document or specific pages.
GroupDocs.Viewer can detect the document format automatically based on information in the file header.
Render Word documents as HTML
Create an HtmlViewOptions class instance and pass it to the Viewer.View method to convert a Word 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("resume.docx")){// Create an HTML file for each document page.// {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("resume.docx")' Create an HTML file for each document page.
' {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("resume.docx")){// Create an HTML file for each document page.// 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("resume.docx")' Create an HTML file for each document page.
' 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.
Render Word documents as PDF
Create a PdfViewOptions class instance and pass it to the Viewer.View method to convert a Word 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("resume.docx")){// Create a PDF file for the document.// Specify the PDF file name.varviewOptions=newPdfViewOptions("output.pdf");viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("resume.docx")' Create a PDF file for the document.
' Specify the PDF file name.
DimviewOptions=NewPdfViewOptions("output.pdf")viewer.View(viewOptions)EndUsingEndSubEndModule
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("resume.docx")){// Create a PNG image for each document page.// {0} is replaced with the current page number in the image name.varviewOptions=newPngViewOptions("output_{0}.png");// Set width and height.viewOptions.Width=800;viewOptions.Height=900;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("resume.docx")' Create a PNG image for each document page.
' {0} is replaced with the current page number in the image name.
DimviewOptions=NewPngViewOptions("output_{0}.png")' Set width and height.
viewOptions.Width=800viewOptions.Height=900viewer.View(viewOptions)EndUsingEndSubEndModule
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("resume.docx")){// Create a JPEG image for each document page.// {0} is replaced with the current page number in the image name.varviewOptions=newJpgViewOptions("output_{0}.jpg");// Set width and height.viewOptions.Width=800;viewOptions.Height=900;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("resume.docx")' Create a JPEG image for each document page.
' {0} is replaced with the current page number in the image name.
DimviewOptions=NewJpgViewOptions("output_{0}.jpg")' Set width and height.
viewOptions.Width=800viewOptions.Height=900viewer.View(viewOptions)EndUsingEndSubEndModule
Define page margins
Use the following properties to specify the size of page margins in the output files when you convert your Word documents to HTML, PDF, and image formats:
The example below converts a Word document to HTML and specifies page margins for the output file.
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("resume.docx")){// Create an HTML file for each document page.// {0} is replaced with the current page number in the file name.varviewOptions=HtmlViewOptions.ForEmbeddedResources("page_{0}.html");// Specify the size of page margins in points.viewOptions.WordProcessingOptions.TopMargin=72;viewOptions.WordProcessingOptions.BottomMargin=72;viewOptions.WordProcessingOptions.LeftMargin=54;viewOptions.WordProcessingOptions.RightMargin=54;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("resume.docx")' Create an HTML file for each document page.
' {0} is replaced with the current page number in the file name.
DimviewOptions=HtmlViewOptions.ForEmbeddedResources("page_{0}.html")' Specify the size of page margins in points.
viewOptions.WordProcessingOptions.TopMargin=72viewOptions.WordProcessingOptions.BottomMargin=72viewOptions.WordProcessingOptions.LeftMargin=54viewOptions.WordProcessingOptions.RightMargin=54viewer.View(viewOptions)EndUsingEndSubEndModule
Render tracked changes
GroupDocs.Viewer does not render tracked changes (revisions made to a Word document) by default. If you want to display tracked changes in the output file, enable the WordProcessingOptions.RenderTrackedChanges property for one of the following classes (depending on the output file format):
The following code example demonstrates how to render a Word document with tracked changes:
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("TrackChanges.docx")){// Convert the document to PDF.varviewOptions=newPdfViewOptions("output.pdf");// Enable tracked changes rendering.viewOptions.WordProcessingOptions.RenderTrackedChanges=true;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("TrackChanges.docx")' Convert the document to PDF.
DimviewOptions=NewPdfViewOptions("output.pdf")' Enable tracked changes rendering.
viewOptions.WordProcessingOptions.RenderTrackedChanges=Trueviewer.View(viewOptions)EndUsingEndSubEndModule
The following image illustrates the result:
Render comments
Enable the ViewOptions.RenderComments option for a target view to display comments in the output file when you convert your document to HTML, PDF, PNG, or JPEG format.
The code example below renders a Word document with comments to PDF.
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("resume.docx")){// Convert the document to PDF.varviewOptions=newPdfViewOptions("output.pdf");// Enable comments rendering.viewOptions.RenderComments=true;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("resume.docx")' Convert the document to PDF.
DimviewOptions=NewPdfViewOptions("output.pdf")' Enable comments rendering.
viewOptions.RenderComments=Trueviewer.View(viewOptions)EndUsingEndSubEndModule
The following image illustrates the result:
Unlink table of contents
When rendering to HTML or PDF, you can set WordProcessingOptions.UnlinkTableOfContents to true to unlink table of contents. For HTML rendering, <a> tags with relative links will be replaced with <span> tags, removing functionality but preserving visual appearance. For PDF rendering, the table of contents will be rendered as plain text without links to document sections.
The code example below renders a Word document with table of contents as a plain text without links.
usingGroupDocs.Viewer;usingGroupDocs.Viewer.Options;// ...using(varviewer=newViewer("resume.docx")){// Convert the document to HTML.varviewOptions=HtmlViewOptions.ForEmbeddedResources();// Unlink table of contents.viewOptions.WordProcessingOptions.UnlinkTableOfContents=true;viewer.View(viewOptions);}
ImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Options' ...
ModuleProgramSubMain(argsAsString())Usingviewer=NewViewer("resume.docx")' Convert the document to HTML.
DimviewOptions=HtmlViewOptions.ForEmbeddedResources()' Unlink table of contents.
viewOptions.WordProcessingOptions.UnlinkTableOfContents=Trueviewer.View(viewOptions)EndUsingEndSubEndModule
The following image illustrates the result:
Disable updating fields when saving
The most of formats inside the WordProcessing family of formats, like DOC, DOCX, ODT and so on, have the concept of fields, which are processed when the document is opened in some viewer application like Microsoft Word. When the input WordProcessing document is loaded to the GroupDocs.Viewer and saved to the HTML (with embedded or external resources), PDF, PNG, or JPEG output formats, all the fields within the input document are updated while saving, and this mimics the Microsoft Word behavior. But in some scenarios, for example, when field values are incorrect, there is no necessary and even not desirable to update fields.
Starting from the version 24.12 the GroupDocs.Viewer for .NET has obtained an ability to disable updating fields while saving the documents. The new public property UpdateFields of the System.Boolean type was added to the Options.WordProcessingOptions class. By default the value of this property is set to true, so fields are updated, as before. In order to turn fields updating off, please set this property to false. Code sample below shows opening a sample DOCX document and saving to the HTML with embedded resources and PDF formats without updating fields during saving.
Most of WordProcessing formats like DOC, DOCX, ODT and so on are able to store the scripts, usually written on VBA. When the output format is PDF, PNG, or JPEG, there is no problem at all. But when the output format is HTML, this may lead to the situations when malicious or harmful VBA script(s) from input DOCX, for example, will be translated to the resultant HTML document. Before the version 25.1 the was no possibility for the GroupDocs.Viewer to disable scripts preserving and translation — all the VBA scripts were translated to the JavaScript in HTML. Starting from the version 25.1, for the security purposes script translation is disabled by default — all the links containing JavaScript are replaced with the harmless "javascript:void(0)" string in the resultant HTML markup. But it is possible to enable script translation, as it was present in the GroupDocs.Viewer before, by using a new public property RemoveJavaScript of the System.Boolean type in the Options.HtmlViewOptions class. By default this property has a true value — JavaScript will be removed from the resultant HTML document. For preserving the JavaScript, as it was in the previous versions of the GroupDocs.Viewer, the false value should be assigned to this property. Code sample below shows opening a sample DOCX document and rendering it to the HTML with embedded resources with and without JavaScript.
Before version 26.7, when rendering loaded WordProcessing documents to the raster formats (PNG and JPEG), the horizontal and vertical resolution of the output image was always fixed and equal to 96 DPI (Dots Per Inch). As a result, it was impossible to significantly increase the quality of produced images. To solve this problem, the version 26.7 contains two new properties in the WordProcessingOptions — the HorizontalResolution and VerticalResolution, both of Int32 type, which are responsible for the horizontal resolution and vertical resolution respectively.
By default their values are 96 DPI — same as in all previous versions of GroupDocs.Viewer. But now a user can change these values. The minimum possible value is 72 DPI — even if a user will set a lesser number, the 72 DPI will be applied. There is also a maximum possible value — 600 DPI. Even if the bigger numbers are specified, the 600 DPI is applied. This is true for both HorizontalResolution and VerticalResolution.
Need to additionally emphasize that these two properties are valid only when rendering to the PNG and JPEG formats; for other formats they are ignored.
Source code below demonstrated rendering the loaded “sample.docs” to the PNG format with adjusted horizontal and vertical resolutions, which are both set to 192 DPI, and to the JPEG format, where horizontal resolution is intact and default (96 DPI), while only the vertical is adjusted — 120 DPI.
By default the GroupDocs.Viewer renders the input WordProcessing documents “as-is”, without any changes. This applies to the page numbers as well: when they are present in the original file, they also will be present in the output PDF, HTML, PNG and JPEG, and vice versa. Initially there was no possibility to forcibly add the page numbers to the produced output documents.
However, this has changed since the version 26.7. Starting from this version it is possible to apply the page numeration to the WordProcessing documents. Important note: the input WordProcessing file are not changed in any case regardless of which options are applied. The described feature modifies only the output documents, generated by the GroupDocs.Viewer from input Words files.
This feature has the next behavior. A new property PageNumberLocation was added to the WordProcessingOptions class, that is accessible from the WordProcessingOptions property. It is of enum type WordsPageNumberLocation and its default value is NotApply — this means that by default the input WordProcessing documents are rendered as before: when an input document has page numbers, they are present in the output documents, but when it has not — page numbers are absent. But when any other value of WordsPageNumberLocation enum except from of NotApply is specified in the PageNumberLocation property, the GroupDocs.Viewer forcibly adds the page numbers to the produced output documents. If the original document already had the page numbers, they are initially removed from the output documents, and then the new page numbers are added.
The WordsPageNumberLocation enum actually has 2 functions: it forcibly applies the page numbers to the pages and also specifies the position of where the page numbers should be located: TopLeft, TopCenter, TopRight, BottomLeft, BottomCenter, BottomRight.
Page numbers with different locations can be applied to different output formats for the same input WordProcessing document. The code sample above shows applying page numbers in the top left corner to the output PDF and page numbers in the bottom center side to the output HTML.