Aspose.Cells For .NET Documentation.zip (3.4 MB)
using (Viewer viewer = new Viewer(filepath))
{
//Get document info
ViewInfo info = viewer.GetViewInfo(ViewInfoOptions.ForPngView(false));
pageCount = info.Pages.Count;
//Set options and render document
PngViewOptions options = new PngViewOptions(imageFilesPath);
viewer.View(options);
}
when I try this code on the uploaded chm file,It hangs