gpt4 book ai didi

javascript - PDFBox - 如何单击 PDF 文件中的链接以移动到另一页并在其中的特定文本下划线?

转载 作者:行者123 更新时间:2023-11-30 20:53:48 24 4
gpt4 key购买 nike

在 Adob​​e Acrobat 中,我可以在 PDF 文件中定义一个链接并设置一个 JavaScript Action ,当它被点击以转到另一个页面并在该页面中的特定单词下划线时,如下图所示:

enter image description here

我想使用 Java 的 PDFBox 库做同样的事情。我已经成功地定义了一个链接,但是如何设置该链接的 JavaScript 代码以移动到另一个页面并在该页面中的特定单词下划线呢?

这是我当前的代码:

PDAnnotationLink myLink = new PDAnnotationLink();
/*
* Some code here to define the link, then i should define the link action.
*/
PDActionJavaScript javascriptAction = new PDActionJavaScript( "app.alert( \"I should now go to page 10 and undeline a word out there.\" );" );
myLink.setAction( javascriptAction );
annotations.add( myLink );

最佳答案

该操作是一个 GoTo 操作,它以第 2 页对象作为目标。它有一个“下一个”条目,那个条目有 Javascript 操作。

此代码复制了 Adob​​e 一直在做的事情:

List<PDAnnotation> annotations = pdfDocument.getPage(0).getAnnotations();
PDAnnotationLink myLink = new PDAnnotationLink();
myLink.setRectangle(new PDRectangle(122.618f, 706.037f, 287.127f-122.618f, 718.255f-706.037f));
myLink.setColor(new PDColor(new float[]{1, 1 / 3f, 0}, PDDeviceRGB.INSTANCE));
PDBorderStyleDictionary bs = new PDBorderStyleDictionary();
bs.setWidth(3);
bs.setStyle(PDBorderStyleDictionary.STYLE_UNDERLINE);
myLink.setBorderStyle(bs);

PDPageFitRectangleDestination dest = new PDPageFitRectangleDestination();
dest.setLeft(48);
dest.setBottom(401);
dest.setRight(589);
dest.setTop(744);
dest.setPage(pdfDocument.getPage(1));
PDActionGoTo gotoAction = new PDActionGoTo();
gotoAction.setDestination(dest);
List<PDAction> actionList = new ArrayList<>();
String js = "var annot = this.addAnnot({\n"
+ "page: 1,\n"
+ "type: \"Underline\",\n"
+ "quads: this.getPageNthWordQuads(1, 4),\n"
+ "author: \"Brad Colin\",\n"
+ "contents: \"Fifth word on page 2\"\n"
+ "});";
PDActionJavaScript jsAction = new PDActionJavaScript(js);
actionList.add(jsAction);
gotoAction.setNext(actionList);
myLink.setAction(gotoAction);

annotations.add(myLink);

pdfDocument.save("1-new.pdf");

关于javascript - PDFBox - 如何单击 PDF 文件中的链接以移动到另一页并在其中的特定文本下划线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47886572/

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