hi all
iam converting HTML to Pdf using StringBuilder .. added one image using
Doc theDoc = new Doc();
System.Text.StringBuilder sbHtml = new System.Text.StringBuilder();
sbHtml.Append("<html>");
sbHtml.Append("<body>");
sbHtml.Append("</table></td> <td width='406' height='104'><div align='right'><img src='~/images/logo.jpg' width='300' height='119' /></div></td> </tr>
........
.....
sbHtml.Append("</body>");
sbHtml.Append("</html>");
theDoc.AddImageHtml(sbHtml.ToString());
theDoc.Save(Server.MapPath("~/invoices/" + inid + ".pdf"));
theDoc.Clear();
theDoc.Dispose();
here image is not displaying in PDF can any one suggest me where i went wrong