我正在尝试使用PDFBox创建链接,我可以单击以转到同一文档中的另一页。
从这个问题(Accessing your database from another platform)开始,我认为这应该很容易,但是当我尝试执行此操作时,我收到此错误:线程“ main”中的异常java.lang.IllegalArgumentException:a的目标转到动作必须是页面字典对象
我正在使用以下代码:
//Loading an existing document consisting of 3 empty pages.
File file = new File("C:\\Users\\Student\\Documents\\MyPDF\\Test_doc.pdf");
PDDocument document = PDDocument.load(file);
PDPage page = document.getPage(1);
PDAnnotationLink link = new PDAnnotationLink();
PDPageDestination destination = new PDPageFitWidthDestination();
PDActionGoTo action = new PDActionGoTo();
destination.setPageNumber(2);
action.setDestination(destination);
link.setAction(action);
link.setPage(page);
我正在使用PDFBox 2.0.13,有人可以给我一些有关我做错事情的指导吗?
欣赏所有答案。
答案 0 :(得分:1)
首先,对于本地链接(“可以单击以链接到同一文档中另一个页面的链接” ),destination.setPageNumber
是错误的使用方法,请参见。其JavaDocs:
/**
* Set the page number for a remote destination. For an internal destination, call
* {@link #setPage(PDPage) setPage(PDPage page)}.
*
* @param pageNumber The page for a remote destination.
*/
public void setPageNumber( int pageNumber )
因此,替换
destination.setPageNumber(2);
作者
destination.setPage(document.getPage(2));
此外,您忘记为链接设置矩形区域,而忘记了将链接添加到页面注释。
一起:
PDPage page = document.getPage(1);
PDAnnotationLink link = new PDAnnotationLink();
PDPageDestination destination = new PDPageFitWidthDestination();
PDActionGoTo action = new PDActionGoTo();
destination.setPage(document.getPage(2));
action.setDestination(destination);
link.setAction(action);
link.setPage(page);
link.setRectangle(page.getMediaBox());
page.getAnnotations().add(link);
(AddLink测试testAddLinkToMwb_I_201711
)