Convert multi page pdf into a single html in .NET

Hello, we are interested in this functionality too. Using the version 20.8 and the following code, to convert multi page pdf into a single html:

using (var viewer = new Viewer(input))
{
       var options = HtmlViewOptions.ForEmbeddedResources(output);
       options.RenderSinglePage = true;
       viewer.View(options, new int[] { 1, 2 });
}

However it does not work, it converts only page 2.

We need this to be able to print different document formats, after converting them to html.


This Topic is created by Atir_Tahir using Email to Topic tool.

@eugenekr

We are investigating this scenario. Your investigation ticket ID is VIEWERNET-2949. You’ll be notified as there’s any update.

@eugenekr

This feature is not yet supported by the API. However, we’ll plan to implement it in some future releases. You’ll be notified as there’s any progress.

1 Like

@eugenekr

We have added a feature to render multi-paged PDF to single HTML in API version 21.1.

1 Like