如何在现有的PDF中绘图?
我有一个 pdf 文档,其中存储了一些数据。我想将更多数据写入同一个文件。我认为通过使用透明层的 Quartz 2D 编程是可能的。 但我不知道该怎么做。 (我的pdf存储在iphone应用程序的文档文件夹中)。
请帮忙..
I have a pdf document which has some data stored in it. I want to write some more data to same file. I think it will be possible by Quartz 2D programming using transperancy layers.
But i am not able to get how to do it.
(My pdf is stored in documents folder of iphone application).
Please Help..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
2D 编程提供了许多 API 来处理 PDF 文件。
基本策略可以是在上下文中绘制 PDF,然后按照您想要的方式编辑该上下文,然后保存它。
您可以在这里找到一些详细信息。
http://developer.apple.com/library/mac/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_pdf/dq_pdf.html#//apple_ref/doc/uid/TP30001066-CH214-CJBHHJCB
上面还包括一些示例代码。
2D programming provides many api to handle a PDF File.
Basic strategy can be to draw PDF on context and then edit that context the way you want and then save it.
you can find some details here.
http://developer.apple.com/library/mac/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_pdf/dq_pdf.html#//apple_ref/doc/uid/TP30001066-CH214-CJBHHJCB
Above also include some sample code.