为了账号安全,请及时绑定邮箱和手机立即绑定

SelectPdf 仅在自定义页面上显示页脚

SelectPdf 仅在自定义页面上显示页脚

C#
拉莫斯之舞 2023-09-24 17:05:56
我正在使用SelectPDFHTML 模板将其转换为 PDF。我遵循的设计要求仅在第一页上显示页脚。该文档不包括自定义页面显示。以前有人尝试过这个吗?
查看完整描述

1 回答

?
慕娘9325324

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();

我希望它能帮助你干杯


查看完整回答
反对 回复 2023-09-24
  • 1 回答
  • 0 关注
  • 115 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信