如何在PDFbox中使用PDDestination类?

时间:2013-02-13 10:56:52

标签: pdfbox

如何在PDFbox中使用PDDestination课程? getPagenumber()方法是否会返回当前页码

任何人都可以分享你的观点 谢谢

1 个答案:

答案 0 :(得分:-1)

PDDestinationPDAction的使用情况与 iText PdfDestinationPdfAction非常相似。

因此,您可能希望首先搜索 iText 示例。

特别是在 PDFBox 上, 例如 以下内容使第一页打开第5页。

PDDestination dest = new PDPageDestination();
// When you open this PDF, you will see page 5.
dest.setPageNumber(4)
PDActionGoTo action = new PDActionGoTo();
action.setDestination(dest);
document.getDocumentCatalog().setOpenAction(action);