Click here to Skip to main content
15,884,472 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Response.ContentType = "application/pdf";
            Response.AddHeader("content-disposition", "attachment;filename=Panel.pdf");
            Response.Cache.SetCacheability(HttpCacheability.NoCache);
            StringWriter sw = new StringWriter();
            HtmlTextWriter hw = new HtmlTextWriter(sw);
           
              pnlPerson.RenderControl(hw);
            StringReader sr = new StringReader(sw.ToString());
            Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 100f, 0f);
            HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
            PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
            pdfDoc.Open();
            htmlparser.Parse(sr);
            pdfDoc.Close();
            Response.Write(pdfDoc);
            Response.End();


In my Page i Used
<asp:Image ID="Image1"  runat="server" ImageUrl="~/Images/enam.jpg"  />
And i want to convert this image to pdf. But I found ERROR "
Could not find a part of the path 'C:\Images\enam.jpg'.
"

Please Help Me
Posted
Comments
enamul haque 11-Feb-15 23:16pm    
I have solved By this link. http://www.c-sharpcorner.com/Blogs/12317/add-image-in-pdf-using-itextsharp.aspx[^]
Have any option to add more image by programmatically??

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900