在 PDF 中添加注释
如何为现有 pdf 文件添加注释?我看到了 libHaru 库。但它不允许编辑现有文件。我怎样才能克服它?
How can I add annotation to an existing pdf file? I saw libHaru library.But it doesn't allow editing existing file. How can i overcome it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最近遇到这个问题后,我必须拼凑一些想法才能使其发挥作用。
有几个问题:
您正在做什么类型的注释?
你有pdf的png文件吗?
附加文件后您将如何处理该文件?
高级别:
以编程方式或在添加到捆绑包之前将 pdf 转换为图像文件。
完成附加并保存在视图的另一层(以 OpenGL 为例)。
合并/组合两个图像层。
绘制新的组合图像 pdf。
After running into this issue recently, I had to piece together a few ideas to make it work.
A few questions:
What type of annotation are you doing?
Do you have a png file of the pdf?
What are you doing with the file after it is appended?
Hi-level:
Convert pdf to image file either programmatically or before adding to the bundle.
Have appending done and saved on another layer of the view (OpenGL as an example).
Merge/Combine the two image layers.
Draw new combined image pdf.