本文介紹了如何使用PDFBox創建鏈接,我可以單擊該鏈接轉到同一文檔中的另一個頁面的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在嘗試使用PDFBox創建一個鏈接,我可以單擊該鏈接轉到同一文檔中的另一個頁面。
從這個問題(How to use PDFBox to create a link that goes to *previous view*?)我知道這應該很容易做到,但是當我嘗試這樣做時,我得到了這個錯誤:在線程”main”java.lang.IlLegalArgumentException:GoTo操作的目標必須是頁面字典對象
我正在使用以下代碼:
//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,有人能給我一些指導嗎?我哪里做錯了?
感謝所有答案。
推薦答案
首先,對于本地鏈接(“我可以單擊以轉到同一文檔中的另一頁”),destination.setPageNumber
是錯誤的使用方法,cf。其Java文檔:
/**
* 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
)
這篇關于如何使用PDFBox創建鏈接,我可以單擊該鏈接轉到同一文檔中的另一個頁面的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,