本文介绍了使用PDFBox从PDF文档中读取特定页面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用PDFBox从PDF文档中读取特定页面(给定页码)?

How do I read a particular page (given a page number) from a PDF document using PDFBox?

推荐答案

这应该work:

PDPage firstPage = (PDPage)doc.getAllPages().get( 0 );

更新2015,版本2.0.0 SNAPSHOT

似乎已将其删除并放回(?)。 getPage 位于2.0.0 。使用它:

Seems this was removed and put back (?). getPage is in the 2.0.0 javadoc. To use it:

PDDocument document = PDDocument.load(new File(filename));
PDPage doc = document.getPage(0);

getAllPages 方法已重命名为

The getAllPages method has been renamed getPages

PDPage page = (PDPage)doc.getPages().get( 0 );

这篇关于使用PDFBox从PDF文档中读取特定页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-27 13:00