使用php识别pdf中的链接
我想用 pdf 创建图片。我知道 Linux 有免费的工具可以做到这一点。我的问题是我想从 pdf 文件中获取链接,识别它们以便稍后使用。因此,我需要知道它们是什么以及该页面上的坐标,以便能够使用它们。
I want to create pictures out of a pdf. I know for linux there are free tools to do that. My problem is that I want to get links from a pdf file, identify them to use them later. So I would need to know which they are and also on what coordinates on that page, in order to be able to use them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 PDF 转换为 HTML eq "pdftohtml" 并查找 href
然后使用 eq PHP dom 获取 href 的高度 eq $('a').offset().top;
Convert PDf to HTML eq "pdftohtml" and find href
Then with eq PHP dom get height of a href eq $('a').offset().top;