溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在java中將PDF文件轉(zhuǎn)換為圖片

發(fā)布時間:2021-02-22 15:54:24 來源:億速云 閱讀:297 作者:Leah 欄目:編程語言

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)如何在java中將PDF文件轉(zhuǎn)換為圖片,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

Java的特點有哪些

Java的特點有哪些 1.Java語言作為靜態(tài)面向?qū)ο缶幊陶Z言的代表,實現(xiàn)了面向?qū)ο罄碚摚试S程序員以優(yōu)雅的思維方式進行復(fù)雜的編程。 2.Java具有簡單性、面向?qū)ο?、分布式、安全性、平臺獨立與可移植性、動態(tài)性等特點。 3.使用Java可以編寫桌面應(yīng)用程序、Web應(yīng)用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應(yīng)用程序等。

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把對應(yīng)的pdf轉(zhuǎn)成指定格式的圖片,并通過流的方式響應(yīng)給客戶端

public class PDFToImgUtil {
 
 private static Logger logger = LoggerFactory.getLogger(PDFToImgUtil.class);
 
 
 /**
 * 獲取PDF總頁數(shù)
 * @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轉(zhuǎn)圖片 根據(jù)頁碼一頁一頁轉(zhuǎn) 
 * @throws IOException 
 * imgType:轉(zhuǎn)換后的圖片類型 jpg,png
 */
 public static void PDFToImg(OutputStream sos,String fileUrl,int page,String imgType) throws IOException {
 PDDocument pdDocument = null;
 /* dpi越大轉(zhuǎn)換后越清晰,相對轉(zhuǎn)換速度越慢 */
 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中將PDF文件轉(zhuǎn)換為圖片了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI