Word转换成图片
程序员文章站
2022-03-02 12:48:48
...
package com.ljw.rxgl;
import com.spire.doc.Document;
import com.spire.doc.documents.ImageType;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
public class ConvertWordToOtherFormats {
public static void main(String[] args) throws IOException {
//创建Document对象
Document doc = new Document();
//加载Word文档
doc.loadFromFile("C:\\Users\\brukl\\Desktop\\1.docx");
//将指定页保存为BufferedImage
BufferedImage image = doc.saveToImages(0,ImageType.Bitmap);
//将图片数据保存为PNG格式文档
File file = new File("C:\\Users\\brukl\\Desktop\\ToPNG.png");
ImageIO.write(image, "PNG", file);
}
}