iOS 搜索和替换 PDF 字符串
是否可以使用 Objective-C/Quartz 2D
从 PDF 中搜索并替换已知字符串?
我有一些带有表格数据的格式良好的 PDF,使用 Latex 创建(并使用 pdflatex 生成)。每个 pdf 都会有一个占位符字符串,例如 XXXXXX,我想以编程方式更改它。
该字符串将仅被其他数字替换。
我知道 PDF 可能是可编辑的表单,但我不想要它,因为我更喜欢保留所有字体和格式,因为它们是由 Latex 排版的。
Is it possible to search and replace a known string from a PDF with Objective-C/Quartz 2D
?
I've some nice formatted PDF with tabular data, created with Latex (and generated with pdflatex). Every pdf will have a placeholder string, something like XXXXXX that I would like to change programmatically.
This strings will be replaced only by other numbers.
I'm aware that the PDF could be an editable form, but i don't want it because i prefer to leave all the fonts and formatting as they're typeset by Latex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法使用 Quartz 2D 搜索和替换 PDF 文件中的文本。 Quartz 2D 提供了一个用于读取 PDF 文件的只读低级接口。虽然可以在其之上实现搜索,但尽管付出很大的努力,但修改文件和替换文本是不可能的。
It is not possible to search and replace text in PDF files using Quartz 2D. Quartz 2D offers a read only low level interface for reading PDF files. While searching can be implemented on top of it, although with much effort, modifying the files and replacing text is not possible.