微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/csharp/98243.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐