如何在 iTextSharp 中获取 pdf 的总页数?
我创建了一个扩展 PdfPageEventHelper 的类,以在页面末尾添加特定消息。问题是该文本只需添加到 PDF 的末尾(如果我有 3 页,则该文本仅需要显示在最后一页的页脚上)。
在 PdfPageEventHelper 类的 OnEndPage 函数中,我使用 document.PageNumber 来知道我正在修改哪一页,但是我如何知道该页面是否是最后一页?
谢谢。
I've created a class that extends PdfPageEventHelper to add a specific message at the end of the page. The problem is that this text need to be added only to the end of the PDF (if I have 3 pages this text need to be displayed only on the footer of the last page).
In the OnEndPage function of the PdfPageEventHelper class I use document.PageNumber to know what page I'm modifying, but how can I know if this page is the last one?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(writer.PageNumber - 1) 是最后一页。
(writer.PageNumber - 1) is the last page.