gpt4 book ai didi

java - 使用 pdfbox 设置文本字段的工具提示

转载 作者:行者123 更新时间:2023-12-02 09:53:33 28 4
gpt4 key购买 nike

我正在使用 pdfbox 创建一个新的 pdf,并希望在鼠标悬停时为 pdtextfield 设置工具提示。

官方文档上有 getToolTip() 方法,但我没有找到 set 方法。

这是预期的输出:

here is the expected output

最佳答案

您写道,您从头开始创建 PDF,因此您还创建了文本字段(并且不想向现有文本字段添加工具提示)。由于您没有发布代码,也没有提及您正在使用的 PdfBox 版本,所以我没有什么可继续的,但一般来说您可以这样做(TU 键是 acrobat 中用作工具提示的属性,称为备用字段名称):

    PDDocument doc = new PDDocument();

PDTextField textbox = new PDTextField(doc.getDocumentCatalog().getAcroForm());
textbox.setAlternateFieldName("Your tooltip text");
textbox.set... //(set all the other attributes)

此代码假定您使用的是 2.X 版中的 PdfBox。在 1.8.X 中你必须做更多的事情...

关于java - 使用 pdfbox 设置文本字段的工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56149203/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com