PDF 中的工具提示:可能吗?
我使用 tcpdf PHP 类 来创建 PDF。有什么解决方案可以为链接添加工具提示吗?
I'm using the tcpdf PHP class for creating PDFs. Is there any solution to add tooltips to links?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
链接本身不能有工具提示。查看者始终显示 URL。
但是 TCPDF 可以添加“注释”,这是最接近工具提示的(但必须分配给矩形区域而不是文本/段落)。
http://www.tecnick.com/ pagefiles/tcpdf/doc/com-tecnick-tcpdf/TCPDF.html#methodAnnotation
您必须参考 PDF 规范。第 8.4 节和 8.4.5 节,您正在寻找“Popup”。
http://www.adobe.com/devnet/pdf/pdfs/PDFReference16。 pdf
Links itself cannot have tooltips. Viewers always show the URL.
But TCPDF can add "Annotations", which is the closest you can get to tooltips (but have to be assigned to a rectangle area instead of to text/paragraphs).
http://www.tecnick.com/pagefiles/tcpdf/doc/com-tecnick-tcpdf/TCPDF.html#methodAnnotation
You'll have to refer to the PDF specification. Section 8.4 and 8.4.5, and you are looking for "Popup".
http://www.adobe.com/devnet/pdf/pdfs/PDFReference16.pdf
我不这么认为......似乎图书馆不支持它,我什至在实践中没有遇到过它。
顺便说一句,它们在 PDF 中称为注释。
I don't think so... seems the library doesn't support it, I even haven't met it in practice.
BTW they are called comments in PDF.