我嘗試我的網頁轉換爲PDF格式,我看到這個代碼:如何轉換網頁,以PDF
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=TestPage.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
this.Page.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();
我不是真的知道什麼每一行這裏沒有,但我用它在一個新的網站,它工作,當即時通訊嘗試在我的項目上使用它我得到錯誤,這是給出錯誤的行: htmlparser.Parse(sr);
這是錯誤: 找不到路徑 'C:\ Program Files文件\ Common Files文件\ Microsoft共享\ DevServer \ 10.0 \ PIC \ 1.JPG' 的一部分
我的PIC \ 1 .jpg在我的項目中,所以我將它添加到該路徑(我不知道如果多數民衆贊成我需要做的),但它給了我另一個錯誤: 字體大小太小:0
我接近問題的權利?我需要做些什麼來解決它?
這是iTextSharp的。首先,'HTMLWorker'已經被棄用了很長時間,並且不支持CSS。請改用'XMLWorker'。請參閱http://stackoverflow.com/q/9611535/231316和http://stackoverflow.com/a/15362705/231316 –
[將網頁轉換爲HTML到PDF?](http://stackoverflow.com/問題/ 13689255/convert-webpage-to-html-to-pdf) – Thomas