iText 5 页眉和页脚

发布于 2025-01-02 01:40:40 字数 165 浏览 0 评论 0原文

如何在 PDF 页面中添加页眉页脚? 我想要一个表头有 3 列的表,其他表有 3 列的页脚。 我的页面可以是 A3 或 A4,横向或纵向。

谁能帮助我吗?我在互联网上找不到好的例子。

谢谢!

托马索

how I can add in my PDF page the header and the footer?
I wanna a table with 3 column in header and other table, 3 column in the footer.
My page could be A3 or A4, and landscape or portrait.

Can anyone help me? I can not found on internet good examples.

Thanks!

Tommaso

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甚是思念 2025-01-09 01:40:40
  1. 创建一个扩展 PdfPageEventHelper 的类 MyPageEventListener
  2. 向 PdfWriter 对象添加页面事件监听器
  3. 在 MyPageEventListener 类的 onEndPage 方法中,放入代码
    对于页眉/页脚

示例:

public class MyPageEventListener extends PdfPageEventHelper {
  . . .
  @Override
  public void onEndPage(PdfWriter writer, Document document) {
     //code skeleton to write page header
     PdfPTable tbl = new PdfPTable(3);
     tbl.addCell("1st cell");
     tbl.addCell("2nd cell");
     tbl.addCell("3rd cell");
     float x = document.leftMargin();
     float hei = getMyHeaderHeight(); //custom method that return header's height 
     //align bottom between page edge and page margin
     float y = document.top() + hei;

     //write the table
     tbl.writeSelectedRows(0, -1, x, y, writer.getDirectContent());
  }    
}

注册侦听器只需执行以下操作

writer.setPageEvent(new MyPageEventListener());
  1. Create a class MyPageEventListener that extends PdfPageEventHelper
  2. Add a page event listener to the PdfWriter object
  3. In the onEndPage method of MyPageEventListener class, put the code
    for header/footer

Example:

public class MyPageEventListener extends PdfPageEventHelper {
  . . .
  @Override
  public void onEndPage(PdfWriter writer, Document document) {
     //code skeleton to write page header
     PdfPTable tbl = new PdfPTable(3);
     tbl.addCell("1st cell");
     tbl.addCell("2nd cell");
     tbl.addCell("3rd cell");
     float x = document.leftMargin();
     float hei = getMyHeaderHeight(); //custom method that return header's height 
     //align bottom between page edge and page margin
     float y = document.top() + hei;

     //write the table
     tbl.writeSelectedRows(0, -1, x, y, writer.getDirectContent());
  }    
}

to register the listener simply do

writer.setPageEvent(new MyPageEventListener());
对你再特殊 2025-01-09 01:40:40

最简单的方法是首先在内存中生成整个 PDF 的内容,然后创建所有页面后,您需要在 pdfStamper 中打开内存中的 PDF,并迭代添加页眉和页脚的所有页面对象是正确的坐标。

如果您在 Google 上快速搜索在 itextPDF 中添加页码,您会发现许多示例,您可以快速适应您的需求。

关键是它是在创建 pdf 之后完成的,而不是之前。

The easiest way to do this is first generate the contents of your entire PDF in memory, then once all the pages have been created you need to open the in-memory PDF in the pdfStamper and iterate through all the pages adding in the header and footer objects are the correct coordinates.

If you do a quick google search of adding page numbers in itextPDF you will find a number of examples that you can quickly adapt for your needs.

The key is that it is done after you create the pdf, not before.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文