• <menu id="w2i4a"></menu>
  • logo E-iceblue中文文檔

    文檔首頁>>E-iceblue中文文檔>>將 Word 轉(zhuǎn)換為圖像

    將 Word 轉(zhuǎn)換為圖像


    Spire.Doc 是一款專門對(duì) Word 文檔進(jìn)行操作的 類庫。在于幫助開發(fā)人員無需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專業(yè)開發(fā)經(jīng)驗(yàn)Spire系列辦公文檔開發(fā)工具,專注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處理,小巧便捷。 

    E-iceblue 功能類庫Spire 系列文檔處理組件均由中國本土團(tuán)隊(duì)研發(fā),不依賴第三方軟件,不受其他國家的技術(shù)或法律法規(guī)限制,同時(shí)適配國產(chǎn)操作系統(tǒng)如中科方德、中標(biāo)麒麟等,兼容國產(chǎn)文檔處理軟件 WPS(如 .wps/.et/.dps 等格式

    Spire.Doc for.net下載   Spire.Doc for java下載

    您可能需要將 Word 文檔轉(zhuǎn)換為圖像的原因有很多。例如,很多設(shè)備不需要任何特殊軟件就可以直接打開并顯示圖像,并且圖像在傳輸時(shí)其內(nèi)容很難被篡改。在本文中,您將學(xué)習(xí)如何使用Spire.Doc for Java將 Word 轉(zhuǎn)換為流行的圖像格式,例如JPG、PNG和SVG。

    1. 在 Java 中將 Word 轉(zhuǎn)換為 JPG
    2. 在 Java 中將 Word 轉(zhuǎn)換為 SVG
    3. 使用自定義分辨率將 Word 轉(zhuǎn)換為 PNG
    安裝適用于 Java 的 Spire.Doc

    首先,您需要將 Spire.Doc.jar 文件添加為 Java 程序中的依賴項(xiàng)。可以從此鏈接下載 JAR 文件。如果您使用 Maven,則可以通過將以下代碼添加到項(xiàng)目的 pom.xml 文件中來輕松將 JAR 文件導(dǎo)入到應(yīng)用程序中。 


    <repositories>
    <repository>
    <id>com.e-iceblue</id>
    <name>e-iceblue</name>
    <url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
    </repository>
    </repositories>
    <dependencies>
    <dependency>
    <groupId>e-iceblue</groupId>
    <artifactId>spire.doc</artifactId>
    <version>11.8.1</version>
    </dependency>
    </dependencies>

    點(diǎn)擊復(fù)制


    在 Java 中將 Word 轉(zhuǎn)換為 JPG

    Spire.Doc for Java 提供Document.saveToImages()方法將整個(gè) Word 文檔轉(zhuǎn)換為單獨(dú)的BufferedImage圖像。然后,每個(gè) BufferedImage 都可以保存為BMP、EMF、JPEG、PNG、GIFWMF文件。以下是使用此庫將 Word 轉(zhuǎn)換為 JPG 的步驟。

    • 創(chuàng)建一個(gè)文檔對(duì)象。
    • 使用Document.loadFromFile()方法加載 Word 文檔。
    • 使用Document.saveToImages()方法將文檔轉(zhuǎn)換為BufferedImage圖像。
    • 循環(huán)遍歷圖像集合以獲取特定的圖像。
    • 用不同的色彩空間重寫圖像。
    • 將 BufferedImage 寫入 JPG 文件。 


    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 ConvertWordToJPG {
    
    public static void main(String[] args) throws IOException {
    
    //Create a Document object
    Document doc = new Document();
    
    //Load a Word document
    doc.loadFromFile("C:\\Users\\Administrator\\Desktop\\ConvertTemplate.docx");
    
    //Convert the whole document into individual buffered images
    BufferedImage[] images = doc.saveToImages(ImageType.Bitmap);
    
    //Loop through the images
    for (int i = 0; i < images.length; i++) {
    
    //Get the specific image
    BufferedImage image = images[i];
    
    //Re-write the image with a different color space
    BufferedImage newImg = new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_RGB);
    newImg.getGraphics().drawImage(image, 0, 0, null);
    
    //Write to a JPG file
    File file = new File("C:\\Users\\Administrator\\Desktop\\Images\\" + String.format(("Image-%d.jpg"), i));
    ImageIO.write(newImg, "JPEG", file);
    }
    }
    }

    點(diǎn)擊復(fù)制


    在 Java 中將 Word 轉(zhuǎn)換為 SVG

    使用 Spire.Doc for Java,您可以將 Word 文檔保存為字節(jié)數(shù)組列表。然后可以將每個(gè)字節(jié)數(shù)組寫入 SVG 文件。將Word轉(zhuǎn)換為SVG的詳細(xì)步驟如下。

    • 創(chuàng)建一個(gè)文檔對(duì)象。
    • 使用Document.loadFromFile()方法加載 Word 文件。
    • 使用Document.saveToSVG()方法將文檔保存為字節(jié)數(shù)組列表。
    • 循環(huán)遍歷列表中的項(xiàng)目以獲取特定的字節(jié)數(shù)組。
    • 將字節(jié)數(shù)組寫入 SVG 文件。 


    import com.spire.doc.Document;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.List;
    
    public class ConvertWordToSVG {
    
    public static void main(String[] args) throws IOException {
    
    //Create a Document object
    Document doc = new Document();
    
    //Load a Word document
    doc.loadFromFile("C:\\Users\\Administrator\\Desktop\\ConvertTemplate.docx");
    
    //Save the document as a list of byte arrays
    List<byte[]> svgBytes = doc.saveToSVG();
    
    //Loop through the items in the list
    for (int i = 0; i < svgBytes.size(); i++)
    {
    //Get a specific byte array
    byte[] byteArray = svgBytes.get(i);
    
    //Specify the output file name
    String outputFile = String.format("Image-%d.svg", i);
    
    //Write the byte array to a SVG file
    try (FileOutputStream stream = new FileOutputStream("C:\\Users\\Administrator\\Desktop\\Images\\" + outputFile)) {
    stream.write(byteArray);
    }
    }
    }
    }

    點(diǎn)擊復(fù)制


    使用自定義分辨率將 Word 轉(zhuǎn)換為 PNG

    分辨率越高的圖像通常越清晰。您可以按照以下步驟在將 Word 轉(zhuǎn)換為 PNG 時(shí)自定義圖像分辨率。

    • 創(chuàng)建一個(gè)文檔對(duì)象。
    • 使用Document.loadFromFile()方法加載 Word 文件。
    • 使用Document.saveToImages()方法將文檔轉(zhuǎn)換為具有指定分辨率的BufferedImage圖像。
    • 循環(huán)遍歷圖像集合以獲取特定的圖像并將其保存為 PNG 文件。 


    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 ConvertWordToPNG {
    
    public static void main(String[] args) throws IOException {
    
    //Create a Document object
    Document doc = new Document();
    
    //Load a Word document
    doc.loadFromFile("C:\\Users\\Administrator\\Desktop\\ConvertTemplate.docx");
    
    //Convert the whole document into individual buffered images with customized resolution
    BufferedImage[] images = doc.saveToImages(0, doc.getPageCount(), ImageType.Bitmap, 150, 150);
    
    //Loop through the images
    for (int i = 0; i < images.length; i++) {
    
    //Get the specific image
    BufferedImage image = images[i];
    
    //Write to a PNG file
    File file = new File("C:\\Users\\Administrator\\Desktop\\Images\\" + String.format(("Image-%d.png"), i));
    ImageIO.write(image, "PNG", file);
    }
    }
    }

    點(diǎn)擊復(fù)制


    Java:將 Word 轉(zhuǎn)換為圖像(JPG、PNG 和 SVG)

    以上便是如何在Java中將 Word 轉(zhuǎn)換為圖像,如果您有其他問題也可以繼續(xù)瀏覽本系列文章,獲取相關(guān)教程,你還可以給我留言或者加入我們的官方技術(shù)交流群。


    歡迎下載|體驗(yàn)更多E-iceblue產(chǎn)品

    獲取更多信息請(qǐng)咨詢慧都在線客服  ;技術(shù)交流Q群(767755948)

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();