Render Word documents as HTML, PDF, and image files

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.

View Word files online View demos and examples on GitHub

Supported Word Processing file formats

GroupDocs.Viewer supports the following Word Processing file formats:

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.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("resume.docx"))
{
    // Create an HTML file for each document page.
    // {0} is replaced with the current page number in the file name.
    var viewOptions = HtmlViewOptions.ForEmbeddedResources("page_{0}.html");
    viewer.View(viewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("resume.docx")
            ' Create an HTML file for each document page.
            ' {0} is replaced with the current page number in the file name.
            Dim viewOptions = HtmlViewOptions.ForEmbeddedResources("page_{0}.html")
            viewer.View(viewOptions)
        End Using
    End Sub
End Module

The following image demonstrates the result:

Render a Word file to HTML

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
using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("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.
    var viewOptions = HtmlViewOptions.ForExternalResources("page_{0}.html", "page_{0}/resource_{0}_{1}", "page_{0}/resource_{0}_{1}");
    viewer.View(viewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("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.
            Dim viewOptions = HtmlViewOptions.ForExternalResources("page_{0}.html", "page_{0}/resource_{0}_{1}", "page_{0}/resource_{0}_{1}")
            viewer.View(viewOptions)
        End Using
    End Sub
End Module

The image below demonstrates the result. External resources are placed in a separate folder.

Place HTML resources 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.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("resume.docx"))
{
    // Create a PDF file for the document.
    // Specify the PDF file name.
    var viewOptions = new PdfViewOptions("output.pdf");
    viewer.View(viewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("resume.docx")
            ' Create a PDF file for the document.
            ' Specify the PDF file name.
            Dim viewOptions = New PdfViewOptions("output.pdf")
            viewer.View(viewOptions)
        End Using
    End Sub
End Module

The following image demonstrates the result:

Render a Word file to PDF

Render Word documents as PNG

Create a PngViewOptions class instance and pass it to the Viewer.View method to convert a Word file to PNG. Use the PngViewOptions.Height and PngViewOptions.Width properties to specify the output image size in pixels.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("resume.docx"))
{
    // Create a PNG image for each document page.
    // {0} is replaced with the current page number in the image name.
    var viewOptions = new PngViewOptions("output_{0}.png");
    // Set width and height.
    viewOptions.Width = 800;
    viewOptions.Height = 900;
    viewer.View(viewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("resume.docx")
            ' Create a PNG image for each document page.
            ' {0} is replaced with the current page number in the image name.
            Dim viewOptions = New PngViewOptions("output_{0}.png")
            ' Set width and height.
            viewOptions.Width = 800
            viewOptions.Height = 900
            viewer.View(viewOptions)
        End Using
    End Sub
End Module
The following image demonstrates the result:

Render a Word file to PNG

Render Word documents as JPEG

Create a JpgViewOptions class instance and pass it to the Viewer.View method to convert a Word file to JPEG. Use the JpgViewOptions.Height and JpgViewOptions.Width properties to specify the output image size in pixels.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("resume.docx"))
{
    // Create a JPEG image for each document page.
    // {0} is replaced with the current page number in the image name.
    var viewOptions = new JpgViewOptions("output_{0}.jpg");
    // Set width and height.
    viewOptions.Width = 800;
    viewOptions.Height = 900;
    viewer.View(viewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("resume.docx")
            ' Create a JPEG image for each document page.
            ' {0} is replaced with the current page number in the image name.
            Dim viewOptions = New JpgViewOptions("output_{0}.jpg")
            ' Set width and height.
            viewOptions.Width = 800
            viewOptions.Height = 900
            viewer.View(viewOptions)
        End Using
    End Sub
End Module

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:

You can access these properties for the following classes:

The example below converts a Word document to HTML and specifies page margins for the output file.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("resume.docx"))
{
    // Create an HTML file for each document page.
    // {0} is replaced with the current page number in the file name.
    var viewOptions = 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);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("resume.docx")
            ' Create an HTML file for each document page.
            ' {0} is replaced with the current page number in the file name.
            Dim viewOptions = 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)
        End Using
    End Sub
End Module

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:

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("TrackChanges.docx"))
{
    // Convert the document to PDF.
    var viewOptions = new PdfViewOptions("output.pdf");
    // Enable tracked changes rendering.
    viewOptions.WordProcessingOptions.RenderTrackedChanges = true;
    viewer.View(viewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("TrackChanges.docx")
            ' Convert the document to PDF.
            Dim viewOptions = New PdfViewOptions("output.pdf")
            ' Enable tracked changes rendering.
            viewOptions.WordProcessingOptions.RenderTrackedChanges = True
            viewer.View(viewOptions)
        End Using
    End Sub
End Module

The following image illustrates the result:

Render tracked changes to PDF

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.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("resume.docx"))
{
    // Convert the document to PDF.
    var viewOptions = new PdfViewOptions("output.pdf");
    // Enable comments rendering.
    viewOptions.RenderComments = true;
    viewer.View(viewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("resume.docx")
            ' Convert the document to PDF.
            Dim viewOptions = New PdfViewOptions("output.pdf")
            ' Enable comments rendering.
            viewOptions.RenderComments = True
            viewer.View(viewOptions)
        End Using
    End Sub
End Module

The following image illustrates the result:

Render comments to PDF

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.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

using (var viewer = new Viewer("resume.docx"))
{
    // Convert the document to HTML.
    var viewOptions = HtmlViewOptions.ForEmbeddedResources();
    // Unlink table of contents.
    viewOptions.WordProcessingOptions.UnlinkTableOfContents = true;
    viewer.View(viewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Module Program
    Sub Main(args As String())
        Using viewer = New Viewer("resume.docx")
            ' Convert the document to HTML.
            Dim viewOptions = HtmlViewOptions.ForEmbeddedResources()
            ' Unlink table of contents.
            viewOptions.WordProcessingOptions.UnlinkTableOfContents = True
            viewer.View(viewOptions)
        End Using
    End Sub
End Module

The following image illustrates the result:

Unlink table of contens in Word files

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.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

HtmlViewOptions htmlViewOptions = HtmlViewOptions.ForEmbeddedResources();
htmlViewOptions.WordProcessingOptions.UpdateFields = false;

PdfViewOptions pdfViewOptions = new PdfViewOptions("output.pdf");
pdfViewOptions.WordProcessingOptions.UpdateFields = false;

using (var viewer = new Viewer("resume.docx"))
{    
    viewer.View(htmlViewOptions);
	viewer.View(pdfViewOptions);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Dim htmlViewOptions = HtmlViewOptions.ForEmbeddedResources()
htmlViewOptions.WordProcessingOptions.UpdateFields = False

Dim pdfViewOptions = New PdfViewOptions("output.pdf")
pdfViewOptions.WordProcessingOptions.UpdateFields = False

Using viewer = New Viewer("resume.docx")	
	viewer.View(htmlViewOptions)
	viewer.View(pdfViewOptions)
End Using

Remove or preserve JavaScript when saving to HTML

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.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

HtmlViewOptions htmlViewOptionsWithoutJavaScript = HtmlViewOptions.ForEmbeddedResources("without-js-page{0}.html");

HtmlViewOptions htmlViewOptionsWithJavaScript = HtmlViewOptions.ForEmbeddedResources("with-js-page{0}.html");
htmlViewOptionsWithJavaScript.RemoveJavaScript = false;

using (var viewer = new Viewer("Doc-with-VBA.docx"))
{
    viewer.View(htmlViewOptionsWithoutJavaScript);
    viewer.View(htmlViewOptionsWithJavaScript);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Dim htmlViewOptionsWithoutJavaScript = HtmlViewOptions.ForEmbeddedResources("without-js-page{0}.html")

Dim htmlViewOptionsWithJavaScript = HtmlViewOptions.ForEmbeddedResources("with-js-page{0}.html")
htmlViewOptionsWithJavaScript.RemoveJavaScript = false;

Using viewer = New Viewer("Doc-with-VBA.docx")	
	viewer.View(htmlViewOptionsWithoutJavaScript)
	viewer.View(htmlViewOptionsWithJavaScript)
End Using

Specify DPI when rendering to raster formats

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.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

PngViewOptions pngOpt = new PngViewOptions();
pngOpt.WordProcessingOptions.HorizontalResolution = pngOpt.WordProcessingOptions.VerticalResolution = 192;

JpgViewOptions jpegOpt = new JpgViewOptions();
jpegOpt.WordProcessingOptions.VerticalResolution = 120;

using (Viewer viewer = new Viewer("sample.docx"))
{
    viewer.View(pngOpt);
    viewer.View(jpegOpt);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Dim pngOpt As New PngViewOptions()
pngOpt.WordProcessingOptions.HorizontalResolution = pngOpt.WordProcessingOptions.VerticalResolution = 192

Dim jpegOpt As New JpgViewOptions()
jpegOpt.WordProcessingOptions.VerticalResolution = 120

Using viewer As New Viewer("sample.docx")
    viewer.View(pngOpt)
    viewer.View(jpegOpt)
End Using

Add page numbers during rendering

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.

using GroupDocs.Viewer;
using GroupDocs.Viewer.Options;
// ...

PdfViewOptions pdfOpt = new PdfViewOptions();
pdfOpt.WordProcessingOptions.PageNumberLocation = WordsPageNumberLocation.TopLeft;

HtmlViewOptions htmlEmbeddedOpt = HtmlViewOptions.ForEmbeddedResources();
htmlEmbeddedOpt.WordProcessingOptions.PageNumberLocation = WordsPageNumberLocation.BottomCenter;

using (Viewer viewer = new Viewer("sample.docx"))
{
    viewer.View(pdfOpt);
    viewer.View(htmlEmbeddedOpt);
}
Imports GroupDocs.Viewer
Imports GroupDocs.Viewer.Options
' ...

Dim pdfOpt As New PdfViewOptions()
pdfOpt.WordProcessingOptions.PageNumberLocation = WordsPageNumberLocation.TopLeft

Dim htmlEmbeddedOpt As HtmlViewOptions = HtmlViewOptions.ForEmbeddedResources()
htmlEmbeddedOpt.WordProcessingOptions.PageNumberLocation = WordsPageNumberLocation.BottomCenter

Using viewer As New Viewer("sample.docx")
    viewer.View(pdfOpt)
    viewer.View(htmlEmbeddedOpt)
End Using

The following collage illustrates the result of adding page numbers to the loaded DOCX file during rendering it to HTML:

Unlink table of contens in Word filesAdd page numbers during DOCX to HTML rendering

Close
Loading

Analyzing your prompt, please hold on...

An error occurred while retrieving the results. Please refresh the page and try again.