Render specific pages
GroupDocs.Viewer also provides the features to render only the selected page numbers. You can specify a list of the document pages to be rendered. Follow the below steps to achieve this functionality.
- Instantiate the Viewer object;
- Instantiate the HtmlViewOptions, JpgViewOptions, PngViewOptions or PdfViewOptions object;
- Pass desired page numbers to view() method.
- The following code sample shows how to render N consecutive pages of a document.
The following code sample shows how to render the first and third pages of a document.
try (Viewer viewer = new Viewer("sample.docx")) {
HtmlViewOptions viewOptions = HtmlViewOptions.forEmbeddedResources();
viewer.view(viewOptions, 1, 3);
}