這篇文章將為大家詳細講解有關java怎么實現pdf文件截圖的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創新互聯公司專業為企業提供城固網站建設、城固做網站、城固網站設計、城固網站制作等企業網站建設、網頁設計與制作、城固企業網站模板建站服務,十年城固做網站經驗,不只是建網站,更提供有價值的思路和整體網絡服務。具體如下:
最近做的一個網站中,有個需求是上傳pdf文件,顯示pdf的封頁,點擊封頁之后進行在線閱讀,這里使用的是PDFRender對pdf進行截圖。
public static boolean createScreenShoot(String source, String target) { File file = new File(source); if (!file.exists()) { System.err.println("路徑[" + source + "]對應的pdf文件不存在!"); return false; } try{ RandomAccessFile raf = new RandomAccessFile(file, "r"); FileChannel channel = raf.getChannel(); ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY, 0, channel.size()); PDFFile pdffile = new PDFFile(buf); int num = pdffile.getNumPages(); for(int i = 1; i < num; i++){ PDFPage page = pdffile.getPage(1); // get the width and height for the doc at the default zoom Rectangle rect = new Rectangle(0, 0, (int) page.getBBox() .getWidth(), (int) page.getBBox().getHeight()); // generate the image Image img = page.getImage(rect.width, rect.height, // width & rect, // clip rect null, // null for the ImageObserver true, // fill background with white true // block until drawing is done ); BufferedImage tag = new BufferedImage(rect.width, rect.height, BufferedImage.TYPE_INT_RGB); tag.getGraphics().drawImage(img, 0, 0, rect.width, rect.height,null); FileOutputStream out = new FileOutputStream(target+i+"jpg"); JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out); encoder.encode(tag); // JPEG編碼 out.close(); } return true; }catch(Exception e){ e.printStackTrace(); return true; }
另外如果需要在線顯示pdf的話,需要設置響應頭
response.setContentType("application/pdf");
關于“java怎么實現pdf文件截圖的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
網頁名稱:java怎么實現pdf文件截圖的方法-創新互聯
當前地址:http://vcdvsql.cn/article16/dshogg.html
成都網站建設公司_創新互聯,為您提供網站收錄、網站建設、響應式網站、手機網站建設、關鍵詞優化、企業建站
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯