Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 itext 生成带有图像的 pdf 文件以及该图像的一些描述。
我想在一页中打印一张图像和该图像的描述。
对于下一张图像想要在下一页打印。通过使用 itext 我如何移动到下一页?
有很多方法可以做到这一点。很简单,我从您的问题中了解到如何在 Pdf 文档中生成新页面。算法会是这样的
for each image{ /*manipulation logic for image and text goes here */ document.newPage(); }
检查最后一次循环是否被迭代,否则它将创建额外的空白页。