iOS PDF 编辑 - 结合 FastPDFKit / CGPDFContext 和 libHaru
我正在尝试将 PDF 注释添加到 iOS 中现有的 PDF 文件中。
据我了解,使用 FASTPDFKit / CGPDFContext,可以读取(但不能编辑)现有 PDF 文件中的几乎所有信息(如果我错了,请纠正我)。
我还了解到,使用 libHaru,在新的 PDF 文件上创建注释是小菜一碟。但 libHaru 不支持阅读现有的 PDF。
组合这两个库是否存在任何限制,以便我可以将注释添加到现有 PDF 文件上?
谢谢
I'm trying to add PDF Annotations onto an existing PDF file in iOS.
I understand that using FASTPDFKit / CGPDFContext, it is possible to READ ( but not EDIT ) almost all the information from an existing PDF File ( Correct me if I'm wrong ).
I also understand that using libHaru, it is a piece of cake to create annotations on a new PDF file. But libHaru does not support reading of existing PDF's.
Is there any constraint combining these 2 libraries so that I can add annotations onto an existing PDF file?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据我的说法,我认为我们可以使用 fastpdfkit 添加自定义注释...请查看 fastpdfkit 功能手册,即 http://mobfarm。欧盟/特征
According to me, i think we can add custom annotation using fastpdfkit...look it in fastpdfkit feature manual i.e http://mobfarm.eu/features
考虑到 libHaru 不支持阅读现有的 PDF 文件,我不知道你如何实现你想要的。当然,您可以一起使用所有这些库,但您仍然必须使用单独的 PDF 文档,并且无法向现有 PDF 添加注释。
我对 FASTPDFKit 了解不多,但我可以告诉您,使用 CGPDFContext 您不能只修改流或向现有流添加新内容。
Considering that libHaru does not support reading of existing PDF files, I cannot see how you could achieve what you want. Of course you can use all of those libraries together, but you will still have to work with separate PDF documents and you won't be able to add annotations to your existing PDF.
I don't know much about FASTPDFKit, but I can tell you that with CGPDFContext you can't just modify the stream or add new stuff to an existing stream.