1 回答
TA贡献1783条经验 获得超4个赞
正如您所看到的文档,您可以创建自定义 HTML 文档,其名称为 footer.html。该文档将包含您的自定义页脚。
这就是初始化。
string footerUrl = Server.MapPath("~/files/footer.html");
之后,您必须初始化转换器对象并设置它。
HtmlToPdf converter = new HtmlToPdf();
converter.Options.DisplayFooter = true;
converter.Footer.DisplayOnFirstPage = true;
PdfHtmlSection footerHtml = new PdfHtmlSection(footerUrl);
footerHtml.AutoFitHeight = HtmlToPdfPageFitMode.AutoFit;
converter.Footer.Add(footerHtml);
更新:
这段代码从 URL 创建一个新的 pdf,并为第一页添加自定义页脚。
PdfDocument doc = converter.ConvertUrl(@"https://en.wikipedia.org/wiki/Chernobyl_disaster");
PdfPage page = doc.Pages[0];
PdfTemplate customFooter = doc.AddTemplate(
page.PageSize.Width, 20);
PdfHtmlElement customHtml = new PdfHtmlElement(
"<div><b>This is the custom footer that will " +
"appear only on page 1!</b></div>",
string.Empty);
customFooter.Add(customHtml);
page.CustomFooter = customFooter;
doc.Save("Test.pdf");
doc.Close();
我希望它能帮助你干杯
- 1 回答
- 0 关注
- 115 浏览
添加回答
举报