java实现pdf按页转换为图片
本文实例为大家分享了java实现pdf按页转换为图片的具体代码,供大家参考,具体内容如下
本程序是利用jacob.jar包实现的,关于jacob.jar的配置见我上一篇文章,程序中可配置参数选择图片清晰图。
packagecore.util; importjava.awt.Image; importjava.awt.Rectangle; importjava.awt.image.BufferedImage; importjava.io.File; importjava.io.FileNotFoundException; importjava.io.FileOutputStream; importjava.io.IOException; importjava.io.RandomAccessFile; importjava.lang.reflect.Method; importjava.nio.MappedByteBuffer; importjava.nio.channels.FileChannel; importjava.security.AccessController; importjava.security.PrivilegedAction; importcom.sun.image.codec.jpeg.JPEGCodec; importcom.sun.image.codec.jpeg.JPEGEncodeParam; importcom.sun.image.codec.jpeg.JPEGImageEncoder; importcom.sun.pdfview.PDFFile; importcom.sun.pdfview.PDFPage; publicclassPDFchangToImage{ publicstaticintchangePdfToImg(Stringinstructiopath,Stringpicturepath){ intcountpage=0; try{ //instructiopath="D:/instructio/2015-05-16/Android4编程入门经典.pdf" //picturepath="D:/instructio/picture/2015-05-16/"; Filefile=newFile(instructiopath); RandomAccessFileraf=newRandomAccessFile(file,"r"); FileChannelchannel=raf.getChannel(); MappedByteBufferbuf=channel.map(FileChannel.MapMode.READ_ONLY, 0,channel.size()); PDFFilepdffile=newPDFFile(buf); //创建图片文件夹 Filedirfile=newFile(picturepath); if(!dirfile.exists()){ dirfile.mkdirs(); } //获得图片页数 countpage=pdffile.getNumPages(); for(inti=1;i<=pdffile.getNumPages();i++){ PDFPagepage=pdffile.getPage(i); Rectanglerect=newRectangle(0,0,((int)page.getBBox() .getWidth()),((int)page.getBBox().getHeight())); intn=2; /**图片清晰度(n>0且n<7)【pdf放大参数】*/ Imageimg=page.getImage(rect.width*n,rect.height*n, rect,/**放大pdf到n倍,创建图片。*/ null,/**nullfortheImageObserver*/ true,/**fillbackgroundwithwhite*/ true/**blockuntildrawingisdone*/ ); BufferedImagetag=newBufferedImage(rect.width*n, rect.height*n,BufferedImage.TYPE_INT_RGB); tag.getGraphics().drawImage(img,0,0,rect.width*n, rect.height*n,null); /** *Fileimgfile=newFile("D:\\work\\mybook\\FilesNew\\img\\"+ *i+".jpg");if(imgfile.exists()){ *if(imgfile.createNewFile()){System.out.println("创建图片:"+ *"D:\\work\\mybook\\FilesNew\\img\\"+i+".jpg");}else{ *System.out.println("创建图片失败!");}} */ FileOutputStreamout=newFileOutputStream(picturepath+"/"+i +".png"); /**输出到文件流*/ JPEGImageEncoderencoder=JPEGCodec.createJPEGEncoder(out); JPEGEncodeParamparam2=encoder.getDefaultJPEGEncodeParam(tag); param2.setQuality(1f,true); /**1f~0.01f是提高生成的图片质量*/ encoder.setJPEGEncodeParam(param2); encoder.encode(tag); /**JPEG编码*/ out.close(); } channel.close(); raf.close(); unmap(buf); /**如果要在转图片之后删除pdf,就必须要这个关闭流和清空缓冲的方法*/ }catch(FileNotFoundExceptione){ e.printStackTrace(); }catch(IOExceptione){ e.printStackTrace(); } returncountpage; } @SuppressWarnings("unchecked") publicstaticvoidunmap(finalObjectbuffer){ AccessController.doPrivileged(newPrivilegedAction(){ publicObjectrun(){ try{ MethodgetCleanerMethod=buffer.getClass().getMethod( "cleaner",newClass[0]); getCleanerMethod.setAccessible(true); sun.misc.Cleanercleaner=(sun.misc.Cleaner)getCleanerMethod .invoke(buffer,newObject[0]); cleaner.clean(); }catch(Exceptione){ e.printStackTrace(); } returnnull; } }); } }
如果需要将word转pdf,也可参考我上一篇文章。