i was trying with evopdf to convert html to pdf and in my html there is an image with absolute path of it but image is unable to load it into pdf.here "sb" is string builder in which i append the html string.
PdfConverter pdf = new PdfConverter();
byte[] outPdfBuffer = pdf.GetPdfBytesFromHtmlString(sb.ToString());
HttpContext.Current.Response.BinaryWrite(outPdfBuffer);
HttpContext.Current.Response.End();
as i have given full path i didnt giving base url,here is my image in html:
<img src="C:/Users/ingyadav/Desktop/icons/icons/logo_160.png" alt="Symphony Summit"/>
can anyone help me on this