java pdf 페이지별로 그림으로 변환
이 프로그램은 제이콥을 이용합니다.jar 패키지가 구현한, jacob에 대해.jar의 설정은 이전 글에서 보았습니다. 프로그램에서 파라미터를 설정하여 그림 선명도를 선택할 수 있습니다.
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;
}
});
}
}
만약 워드를 pdf로 돌려야 한다면, 나의 이전 문장을 참고할 수도 있다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.