Hi iceblue support,
I am trying to convert attached file to images using following code.
doc.LoadFromFile(<PDF File>);
for (int p = 0; p < doc.Pages.Count; p++)
{
using (System.Drawing.Image img = doc.SaveAsImage(p))
{
img.Save(<Save Path Per Each Page>);
}
}
For this particular file doc.SaveAsImage(p) take vary long time (few minutes) to complete when other PDF files processed in milliseconds. Please let me know what causing this issue and is there any workaround.
Kind Regards,
Nuwan