java中怎么將word文檔怎么生成圖片?
這個需求可以通過導(dǎo)入
Spire.Doc.jar
到Java程序,并執(zhí)行以下代碼來將Word文檔保存為圖片://創(chuàng)建Document對象
Document doc = new Document();
//加載Word文檔
doc.loadFromFile("C:\\Users\\Administrator\\Desktop\\sample.docx");
//將指定頁保存為BufferedImage
BufferedImage image= doc.saveToImages(0, ImageType.Bitmap);
//將圖片數(shù)據(jù)保存為PNG格式文檔
File file= new File("output/ToPNG.png");
ImageIO.write(image, "PNG", file);