Java處理Webp圖片格式轉換

前言

Webp是Google推出的一種新型圖片格式,相比於 傳統的PNG/JPG圖片有着更小體積的優點,在Web中有着普遍的應用。因爲Webp格式推出比較晚, Jdk 內置的圖片編解碼庫對此並不支持。java

網上給出的Java環境解決方案每每須要手動在java.library.path中安裝對應的動態連接庫,windows是dll文件,linux是so文件。這對於開發部署很是不方便。linux

本文提供一種無需手動安裝動態連接庫,同時能夠方便處理Webp的解決方案git

準備

先從github上面下載所須要的jar包github

webp-imageio-core-0.1.0.jarweb

因爲這個項目並未發佈到maven中央倉庫,因此須要手動導入本地jar包.windows

若是你用的是gradle,能夠把jar包放入src/main/resource/libs目錄,並在build.gradle中加入依賴maven

dependencies {
    compile fileTree(dir:'src/main/resources/libs',include:['*.jar'])
}

若是你用的是maven,能夠把jar包放入${project.basedir}/libs目錄,並在pom.xml中加入依賴gradle

<dependency>  
    <groupId>com.github.nintha</groupId>  
    <artifactId>webp-imageio-core</artifactId>  
    <version>{versoin}</version>  
    <scope>system</scope>  
    <systemPath>${project.basedir}/libs/webp-imageio-core-{version}.jar</systemPath>  
</dependency>

例子

完整代碼見 https://github.com/nintha/web...,如下爲部分摘錄ui

Webp編碼編碼

public static void main(String args[]) throws IOException {
    String inputPngPath = "test_pic/test.png";
    String inputJpgPath = "test_pic/test.jpg";
    String outputWebpPath = "test_pic/test_.webp";

    // Obtain an image to encode from somewhere
    BufferedImage image = ImageIO.read(new File(inputJpgPath));

    // Obtain a WebP ImageWriter instance
    ImageWriter writer = ImageIO.getImageWritersByMIMEType("image/webp").next();

    // Configure encoding parameters
    WebPWriteParam writeParam = new WebPWriteParam(writer.getLocale());
    writeParam.setCompressionMode(WebPWriteParam.MODE_DEFAULT);

    // Configure the output on the ImageWriter
    writer.setOutput(new FileImageOutputStream(new File(outputWebpPath)));

    // Encode
    writer.write(null, new IIOImage(image, null, null), writeParam);
}

Webp解碼

public static void main(String args[]) throws IOException {
    String inputWebpPath = "test_pic/test.webp";
    String outputJpgPath = "test_pic/test_.jpg";
    String outputJpegPath = "test_pic/test_.jpeg";
    String outputPngPath = "test_pic/test_.png";

    // Obtain a WebP ImageReader instance
    ImageReader reader = ImageIO.getImageReadersByMIMEType("image/webp").next();

    // Configure decoding parameters
    WebPReadParam readParam = new WebPReadParam();
    readParam.setBypassFiltering(true);

    // Configure the input on the ImageReader
    reader.setInput(new FileImageInputStream(new File(inputWebpPath)));

    // Decode the image
    BufferedImage image = reader.read(0, readParam);

    ImageIO.write(image, "png", new File(outputPngPath));
    ImageIO.write(image, "jpg", new File(outputJpgPath));
    ImageIO.write(image, "jpeg", new File(outputJpegPath));

}

關於webp-imageio-core項目

這個項目是基於於 qwong/j-webp項目,而 qwong/j-webp 是基於 webp project of Luciad 0.4.2項目。

webp project of Luciad這個項目提供了java上一個關於處理webp的可用實現,可是它須要開發者手動java.library.path中安裝對應的動態連接庫,很是不方便。qwong/j-webp項目做者爲了解決這個問題,改進了對動態連接庫的讀取方式,把從java.library.path讀取改爲了從項目resource文件中讀取(具體內容見com.luciad.imageio.webp.WebP.loadNativeLibrary方法)。

雖然qwong/j-webp項目解決了動態連接庫依賴問題,可是它的做者並未對這些代碼提供一個良好封裝,畢竟開發者不但願在本身項目裏面直接引入第三方包的源碼,因此有了webp-imageio-core提供一個可用的jar包,只要導入項目便可使用。

相關文章
相關標籤/搜索