c# – abcPDF 7将HTML转换为PDF但仅转换第一页

前端之家收集整理的这篇文章主要介绍了c# – abcPDF 7将HTML转换为PDF但仅转换第一页前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在使用abcPDF 7将 HTML转换为PDF.这是通过ASPX页面完成的,我覆盖了Render方法.
Doc theDoc = new Doc();
theDoc.SetInfo(0,"License",m_License );
theDoc.HtmlOptions.Paged = true;
theDoc.HtmlOptions.Timeout = 1000000;

string callUrl = "http:// my app page";
theDoc.AddImageUrl(callUrl);
Response.Clear();

Response.Cache.SetCacheability(HttpCacheability.Private);
Response.AddHeader("Content-Disposition","attachment; filename=" + sFile + ".pdf");
Response.ContentType = "application/octet-stream";

theDoc.Save(Response.OutputStream);

Response.Flush();

这适用于第一页,但随后截断页面并且不会继续呈现剩余的页面.

有人知道为什么它会在页面后停止吗?

解决方法

“只绘制文档的第一页.可以使用AddImagetochain方法绘制后续页面.”

here

可以在here找到如何使用AddImagetochain的示例

原文链接:https://www.f2er.com/csharp/98243.html

猜你在找的C#相关文章