从其他带有页码的 PDF 生成 PDF
作为我正在进行的项目的一部分,我需要尝试合并我拥有的多个 PDF,并在每个 PDF 上放置连续的页码(可能不是从 1 开始)。理想情况下,我需要能够从 Java 程序中调用它。
我知道有iText、PDFBox和Pdftk等工具,但是这些工具能够处理页码吗?我研究过他们,但没有发现任何处理这个问题的能力。
您知道有什么工具可以实现此目的吗?
提前非常感谢
As part of a project I'm undertaking, I need to try and merge a number of PDFs I have and place consecutive page numbers on each (which may not start from 1). Ideally, I need to be able to call this from a Java program.
I know there are tools such as iText, PDFBox and Pdftk, but are these able to deal with the page numbers? I have looked into them and haven't found any ability to deal with this.
Are there any tools you know of that can achieve this?
Many thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www.rgagnon.com/javadetails/java-0646.html示例代码。您可以使用 PDFWriter getDirectContent() 方法中的 PdfContentByte 添加其他文本/图像/任何内容。
http://www.rgagnon.com/javadetails/java-0646.html example code. you could add additional text/images/whatever using PdfContentByte from PDFWriter getDirectContent() method.