当不是选项时,使用selectpdf.net在每个页面中添加页码



我正在使用selectpdf for .net将HTML文档转换为PDF。

我需要在此格式下在每个页面上添加页码:

"Page {page_number} of {total_pages}";

也就是说,PDF是完美的。因此,我尝试使用以下链接中的说明,然后在库中使用PdfTextElement!?

selectpdf for .net-页编号 - c#/asp.net示例

此处从链接中的代码,以防有一天链接死亡。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using SelectPdf;
namespace SelectPdf.Samples
{
    public partial class page_numbering : System.Web.UI.Page
    {
        protected void BtnCreatePdf_Click(object sender, EventArgs e)
        {
            // create a new pdf document
            PdfDocument doc = new PdfDocument();
            doc.Margins = new PdfMargins(10, 10, 0, 0);
            // create a new pdf font
            PdfFont font = doc.AddFont(PdfStandardFont.Helvetica);
            font.Size = 24;
            // add a new page to the document
            PdfPage page = doc.AddPage();
            // footer template (100 points in height) with text element
            doc.Footer = doc.AddTemplate(doc.Pages[0].ClientRectangle.Width, 100);
            PdfTextElement text1 = new PdfTextElement(0, 50, 
                "Page: {page_number} of {total_pages}.", font);
            text1.ForeColor = System.Drawing.Color.Blue;
            doc.Footer.Add(text1);
            // create a new text element and add it to the page
            // if page elements are added after header and footer is set, 
            // they will not be displayed in those areas.
            PdfTextElement text = new PdfTextElement(0, 0, Helper.SomeLongText(), font);
            page.Add(text);
            // save pdf document
            doc.Save(Response, false, "Sample.pdf");
            // close pdf document
            doc.Close();
        }
    }
}

如果真实代码可以按照此示例代码的方式工作,那就太好了!但是话又说回来,我没有发现PdfTextElement。我只能找到PdfTextSection

当前使用selectpdf 18.4.0.0。

selectpdf v18.4.0.0下载

事实证明,我没有使用完整的selectpdf库,而是其轻巧的selecthtmltopdf。

select.htmltopdf无法使用pdftextlement对象。它仅在select.pdf库中。

相关内容

  • 没有找到相关文章

最新更新