欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

java实现PDF转图片的方法

时间:2020-11-13 09:05:58|栏目:JAVA代码|点击:

本文实例为大家分享了java实现PDF转图片的具体代码,供大家参考,具体内容如下

1.首先利用maven引入所需jar包

<dependency>   
  <groupId>org.apache.pdfbox</groupId>   
  <artifactId>fontbox</artifactId>   
  <version>2.0.1</version> 
</dependency> 
<dependency>  
  <groupId>org.apache.pdfbox</groupId>  
  <artifactId>pdfbox</artifactId> 
  <version>2.0.1</version> 
</dependency>

2.这是本人自己写的一个工具类,有两个方法,一个是获取PDF总页码,一个是通过传过来的page把对应的pdf转成指定格式的图片,并通过流的方式响应给客户端

public class PDFToImgUtil {
 
 private static Logger logger = LoggerFactory.getLogger(PDFToImgUtil.class);
 
 
 /**
 * 获取PDF总页数
 * @throws IOException 
 */
 public static int getPDFNum(String fileUrl) throws IOException {
 PDDocument pdDocument = null;
 int pages = 0;
 try {
  pdDocument = getPDDocument(fileUrl);
  pages = pdDocument.getNumberOfPages();
 } catch (Exception e) {
  e.printStackTrace();
   logger.error(e.getMessage(),e);
 } finally {
  if (pdDocument != null) {
  pdDocument.close();
  }
 }
 return pages;
 }
 
 
 /**
 * PDF转图片 根据页码一页一页转 
 * @throws IOException 
 * imgType:转换后的图片类型 jpg,png
 */
 public static void PDFToImg(OutputStream sos,String fileUrl,int page,String imgType) throws IOException {
 PDDocument pdDocument = null;
 /* dpi越大转换后越清晰,相对转换速度越慢 */
 int dpi = 100;
 try {
  pdDocument = getPDDocument(fileUrl);
  PDFRenderer renderer = new PDFRenderer(pdDocument);
  int pages = pdDocument.getNumberOfPages();
  if (page <= pages && page > 0) {
  BufferedImage image = renderer.renderImageWithDPI(page,dpi);
  ImageIO.write(image, imgType, sos);
  }
 } catch (Exception e) {
  e.printStackTrace();
   logger.error(e.getMessage(),e);
 } finally {
  if (pdDocument != null) {
  pdDocument.close();
  }
 }
 
 }
 
 
 private static PDDocument getPDDocument(String fileUrl) throws IOException {
 File file = new File(fileUrl);
 FileInputStream inputStream = new FileInputStream(file);
   return PDDocument.load(inputStream);
 }
 
}

上一篇:基于Java并发容器ConcurrentHashMap#put方法解析

栏    目:JAVA代码

下一篇:四步轻松搞定java web每天定时执行任务

本文标题:java实现PDF转图片的方法

本文地址:http://www.codeinn.net/misctech/22162.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有