如何在 iTextSharp 中获取 pdf 的总页数?

发布于 2024-12-05 20:30:45 字数 213 浏览 0 评论 0原文

我创建了一个扩展 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 技术交流群。

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

发布评论

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

评论(1

独夜无伴 2024-12-12 20:30:45

(writer.PageNumber - 1) 是最后一页。

(writer.PageNumber - 1) is the last page.

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