標籤:2.4 file ati tor 自身 rac tps mini public
java圖片壓縮,有時由於圖片自身的原因,如透明的PNG圖、改alpha通道或四色圖等。
壓縮完了,會出現圖片變色的情況。
如:
原圖
壓縮完:
嘗試了很多方法,如JDK原生的方式及第三方組件java-image-scaling或thumbnailator都不解決問題。
後來採用阿里的SimpleImage解決。記錄一下
SimpleImage github地址:https://github.com/alibaba/simpleimage
依賴jar:commons-io-2.4.jar
commons-lang.jar
commons-logging-1.1.1.jar
jai_codec-1.1.3.jar
jai_core-1.1.3.jar
測試代碼:
public static void main(String[] args) { // 原圖 File in = new File( "C:/Users/Administrator/Desktop/img/20170916/attachment_15055700026790.jpeg"); // 目的圖 File out = new File( "C:/Users/Administrator/Desktop/img/20170916/attachment_15055700026790a.jpeg"); FileInputStream input = null; FileOutputStream outStream = null; WriteRender wr = null; try { BufferedImage image = ImageIO.read(in); ScaleParameter scaleParam = new ScaleParameter(image.getWidth(), image.getHeight()); // 將映像縮減到1024x1024以內,不足1024x1024則不做任何處理 input = new FileInputStream(in); outStream = new FileOutputStream(out); ImageRender rr = new ReadRender(input); ImageRender sr = new ScaleRender(rr, scaleParam); wr = new WriteRender(sr, outStream); wr.render(); // 觸發影像處理 } catch (Exception e) { e.printStackTrace(); } finally { if (null != input) { try { input.close(); } catch (Exception e) { e.printStackTrace(); } } if (null != outStream) { try { outStream.close(); } catch (Exception e) { e.printStackTrace(); } } if (wr != null) { try { wr.dispose(); // 釋放simpleImage的內部資源 } catch (SimpleImageException ignore) { // skip ... } } } }
引入的pom檔案代碼:
<dependency> <groupId>com.alibaba</groupId> <artifactId>simpleimage</artifactId> <version>1.2.3</version></dependency>
java 圖片壓縮變色問題