服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - java实现pdf按页转换为图片

java实现pdf按页转换为图片

2021-06-23 13:58huanshirenjian Java教程

这篇文章主要为大家详细介绍了java实现pdf按页转换为图片,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

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

本程序是利用jacob.jar包实现的,关于jacob.jar的配置见我上一篇文章,程序中可配置参数选择图片清晰图。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package core.util;
 
import java.awt.image;
import java.awt.rectangle;
import java.awt.image.bufferedimage;
import java.io.file;
import java.io.filenotfoundexception;
import java.io.fileoutputstream;
import java.io.ioexception;
import java.io.randomaccessfile;
import java.lang.reflect.method;
import java.nio.mappedbytebuffer;
import java.nio.channels.filechannel;
import java.security.accesscontroller;
import java.security.privilegedaction;
 
import com.sun.image.codec.jpeg.jpegcodec;
import com.sun.image.codec.jpeg.jpegencodeparam;
import com.sun.image.codec.jpeg.jpegimageencoder;
import com.sun.pdfview.pdffile;
import com.sun.pdfview.pdfpage;
 
public class pdfchangtoimage {
 public static int changepdftoimg(string instructiopath,string picturepath) {
 int countpage =0;
 try {
 //instructiopath ="d:/instructio/2015-05-16/android 4编程入门经典.pdf"
 //picturepath = "d:/instructio/picture/2015-05-16/";
 
 file file = new file(instructiopath);
 randomaccessfile raf = new randomaccessfile(file, "r");
 filechannel channel = raf.getchannel();
 mappedbytebuffer buf = channel.map(filechannel.mapmode.read_only,
  0, channel.size());
 pdffile pdffile = new pdffile(buf);
 //创建图片文件夹
 file dirfile = new file(picturepath);
  if(!dirfile.exists()){
  dirfile.mkdirs();
 }
 //获得图片页数
 countpage = pdffile.getnumpages();
 for (int i = 1; i <= pdffile.getnumpages(); i++) {
 pdfpage page = pdffile.getpage(i);
 rectangle rect = new rectangle(0, 0, ((int) page.getbbox()
  .getwidth()), ((int) page.getbbox().getheight()));
 int n = 2;
 /** 图片清晰度(n>0且n<7)【pdf放大参数】 */
 image img = page.getimage(rect.width * n, rect.height * n,
  rect, /** 放大pdf到n倍,创建图片。 */
  null, /** null for the imageobserver */
  true, /** fill background with white */
  true /** block until drawing is done */
 );
 bufferedimage tag = new bufferedimage(rect.width * n,
  rect.height * n, bufferedimage.type_int_rgb);
 tag.getgraphics().drawimage(img, 0, 0, rect.width * n,
  rect.height * n, null);
 /**
  * file imgfile = new file("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("创建图片失败!"); } }
  */
 fileoutputstream out = new fileoutputstream(picturepath+"/" + i
  + ".png");
 /** 输出到文件流 */
 jpegimageencoder encoder = jpegcodec.createjpegencoder(out);
 jpegencodeparam param2 = 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 (filenotfoundexception e) {
 e.printstacktrace();
 } catch (ioexception e) {
 e.printstacktrace();
 }
 return countpage;
 
 }
 
 @suppresswarnings("unchecked")
 public static void unmap(final object buffer) {
 accesscontroller.doprivileged(new privilegedaction() {
 public object run() {
 try {
  method getcleanermethod = buffer.getclass().getmethod(
  "cleaner", new class[0]);
  getcleanermethod.setaccessible(true);
  sun.misc.cleaner cleaner = (sun.misc.cleaner) getcleanermethod
  .invoke(buffer, new object[0]);
  cleaner.clean();
 } catch (exception e) {
  e.printstacktrace();
 }
 return null;
 }
 });
 }
}

如果需要将word转pdf,也可参考我上一篇文章。

原文链接:https://blog.csdn.net/huanshirenjian/article/details/46408015

延伸 · 阅读

精彩推荐