iText 是否创建基于图像或基于文本的 PDF 文件?
我目前使用 iText 生成 PDF,但我很难确定使用 iText 生成的 PDF 文件是基于文本的还是基于图像。是否有一种简单的方法可以以编程方式确定这一点(或在生成时指定一个选项或另一个选项)?
I currently use iText for PDF generation and I am having difficulty determining if the PDF files generated with iText are text-based or image-based once generated. Is there an easy way to determine that programmatically (or to specify one option or the other at the time of generation)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iText 为文本生成 PDF 文本指令,为图像生成 PDF 图像 XObject。一些其他元素(例如边框)作为 PDF 图形指令生成。所以我想你可以说它生成“基于文本”的文件。
iText generates PDF text instructions for text, and PDF image XObjects for images. Some other elements (e.g. borders) are generated as PDF graphics instructions. So I suppose you could say it generates "text-based" files.