Rendering to PDF
This article will describe on how to render documents to PDF using GroupDocs.Viewer.
When rendering to PDF all pages of source document saved as a single target PDF document.
Here are the steps for rendering to PDF with GroupDocs.Viewer:
- Create new instance of Viewer class and pass source document path as a constructor parameter.
- Instantiate the PdfViewOptions object and specify saving path format for rendered document.
- Call View method of Viewer class instance and pass PdfViewOptions to it.
The following code sample shows how to render DOCX document to PDF.
using (Viewer viewer = new Viewer("sample.docx"))
{
PdfViewOptions viewOptions = new PdfViewOptions();
viewer.View(viewOptions);
}