0
Document document = new Document();
string str = Pagehtml;
//writer - have our own path!!!
PdfWriter.GetInstance(document, new FileStream(Server.MapPath(".") + "parsetest.pdf", FileMode.Create));
document.Open();
//here when it parse the html gives exception unknown color format should be #RGB
ArrayList htmlarraylist = iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList(new StringReader(str), null);
//add the collection to the document
for (int k = 0; k < htmlarraylist.Count; k++)
{
document.Add((IElement)htmlarraylist[k]);
}
這是我的代碼中,我解析HTML代碼,但是當它解析HTML它給未知色彩格式的例外未知色彩格式異常從HTML到PDF使用iTextSharp的
感謝您的回覆,我得到了我的問題的解決方案,這是由於內聯CSS我在頁面中使用我有定義非RGB格式的顏色現在這個問題是由RGB定義它們解決格式。 –