こんにちは、次のコードがあり、html ページを pdf に変換しようとしています。私はabcpdfを使用しています。
私のコードは以下です:
Doc theDoc = new Doc();
theDoc.Rect.Inset(72, 144);
theDoc.Page = theDoc.AddPage();
int theID;
**theID = theDoc.AddImageUrl("http://www.templateworld.com/free_templates.html/");**
while (true)
{
theDoc.FrameRect(); // add a black border
if (!theDoc.Chainable(theID))
break;
theDoc.Page = theDoc.AddPage();
theID = theDoc.AddImageToChain(theID);
}
for (int i = 1; i <= theDoc.PageCount; i++)
{
theDoc.PageNumber = i;
theDoc.Flatten();
}
theDoc.Save(Server.MapPath("pagedhtml.pdf"));
theDoc.Clear();
次の行で:
theID = theDoc.AddImageUrl(" http://www.templateworld.com/free_templates.html/ ");
「HTMLレンダリングが空白です」というエラーがスローされます。FirefoxとChromeでも同じことを試しました。他のURLも使ってみました。同じエラーが発生します。
この問題の解決策を知っている人はいますか?