此问题与NReco's PdfGenerator组件有关。
我使用此产品使用C#将动态生成的HTML字符串转换为.NET MVC框架内的Pdf文档。
在寻找将页码(例如,5个中的1个)添加到Pdf页脚的方法时,我在SO上遇到this和this。毫不奇怪,两种选择似乎都提供了类似的方法来实现相同的目标。
虽然代码本身有意义,但我很难理解的是 - 我的文档内容(或HTML字符串)是在View中生成的。然后将HTML字符串传递给Controller(.cs)以进行实际的转换过程。由于我对MVC框架的知识非常有限,我认为你无法向Controller添加JavaScript代码(或者是否存在?)。
所以,我不太明白如何将上述两种基于JavaScript的方法合并到我处理文档转换的C#函数中。或者这是应该在View中完成的吗?
控制器:
[HttpPost]
public ActionResult Html2Pdf(FormCollection form) {
var docTitle = form["doctitle"].ToString();
var headerHtml =
"<div style='width:100%; margin-top:1em; display:block;'>" +
"<img src='" + System.Web.HttpContext.Current.Server.MapPath("~") + "/media/images/document_banner.png' />" +
"</div>" +
"<div style='width:100%; bottom:110px; left:0; position:relative; display:block;'>" +
"<span style='color:#fff; font-size:2.5em; font-family:georgia; margin-left:1em;'>" + docTitle + "</span>" +
"</div>";
var footerHtml =
"<div style='width:100%; text-align:center; border-top:1px solid #abc; margin-top:2em;'>Page 0 of 0</div>;
var htmlToPdf = new HtmlToPdfConverter();
// various parameters get set here
htmlToPdf.PageHeaderHtml = headerHtml;
htmlToPdf.PageFooterHtml = footerHtml;
....
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=MyTestDocument.pdf");
htmlToPdf.GeneratedPdf(form["htmlcontent"].ToString(), null, Response.OutputStream); // form["htmlcontent"] holds the document body
Response.End();
Return new EmptyResult();
}
答案 0 :(得分:9)
您不需要附加javascript代码(来自wkhtmltopdf帮助)来呈现页码,因为如果您设置了PageHeaderHtml或PageFooterHtml属性,PdfGenerator会为您执行此操作。您只需要在“页面”类元素中标记要呈现的页码:
htmlToPdf.PageHeaderHtml = "<div>Page: <span class="page"></span></div>";
就是这样。
答案 1 :(得分:6)
如果您还要显示总页数(topage类),则可以使用此代码:
var generator = new NReco.PdfGenerator.HtmlToPdfConverter();
generator.PageFooterHtml = $@"page <span class=""page""></span> of <span class=""topage""></span>";