本文整理汇总了Java中org.apache.pdfbox.pdmodel.PDPage.convertToImage方法的典型用法代码示例。如果您正苦于以下问题:Java PDPage.convertToImage方法的具体用法?Java PDPage.convertToImage怎么用?Java PDPage.convertToImage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.pdfbox.pdmodel.PDPage
的用法示例。
在下文中一共展示了PDPage.convertToImage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createImageFromPage
import org.apache.pdfbox.pdmodel.PDPage; //导入方法依赖的package包/类
/**
* Renders the given page as an RGB image.
*
* @param document
* the document containing the page.
* @param pageIndex
* the index of the page to render.
* @param resolution
* the image resolution.
* @return the rendered image
* @throws IOException
* by pdfbox
*/
public static BufferedImage createImageFromPage(final PDDocument document,
final int pageIndex, final int resolution) throws IOException {
final PDPage page = (PDPage) document.getDocumentCatalog()
.getAllPages().get(pageIndex);
return page.convertToImage(BufferedImage.TYPE_INT_RGB, resolution);
}