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.