Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Last active January 12, 2019 05:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/e0d26b9146c82a588fd9341db61a0cc0 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/e0d26b9146c82a588fd9341db61a0cc0 to your computer and use it in GitHub Desktop.
// For complete examples and data files, please go to https://github.com/groupdocs-viewer/GroupDocs.Viewer-for-.NET
// Get Configurations
ViewerConfig config = Utilities.GetConfigurations();
// Create html handler
ViewerHtmlHandler htmlHandler = new ViewerHtmlHandler(config);
// Guid implies that unique document name
string guid = DocumentName;
// Instantiate the HtmlOptions object
HtmlOptions options = new HtmlOptions();
// Set HtmlOptions for responsive HTML
options.EnableResponsiveRendering = true;
// Get document pages in html form
List<PageHtml> pages = htmlHandler.GetPages(guid, options);
foreach (PageHtml page in pages)
{
// Save each page at disk
Utilities.SaveAsHtml(page.PageNumber + "_" + DocumentName, page.HtmlContent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment