我使用iTextSharp.dll創建pdf。但僅適用於文本HTML內容。如果我在頁面中使用它的圖像得來的是圖像未發現異常......使用ASP.NET -C從HTML頁面生成PDF文檔#
我的設計文件
<asp:Panel ID="pdfPannel" runat="server">
Sample Text
<img src="../Images/image1.png"/>
</asp:Panel>
<asp:Button ID="btnSave" runat="server" Text="Save As PDF" onclick="btnSave_Click" />
我的方法:
protected void btnSave_Click(object sender, EventArgs e)
{
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=print.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
pdfPannel.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();
}
當我點擊保存按鈕即時得到錯誤
找不到部分路徑'C:\ Program Files \ Common Files \ Microsoft Shared \ DevServer \ \圖片image1.png」。
請告訴我,是否有任何替代解決方案來創建pdf。
在此先感謝..
請參閱:http://stackoverflow.com/a/16061848/231316 –
使用完整路徑爲您的圖像然後它的工作。 –
當我給完整路徑也沒有工作...它採取圖像路徑爲http:// localhost:58095/testProject/D:/testProject/Images/image1.png和該圖像不顯示在頁面中生成文本內容的pdf。 – Gopalakrishnan