png image compression pngquant algorithm Java implementation.
免费的png图片压缩工具
<dependency>
<groupId>com.xqlee.image</groupId>
<artifactId>pngquant-png</artifactId>
<version>1.0.0</version>
</dependency>
String srcFile="C:\\Users\\xqlee\\Desktop\\test\\swagger_logo.png";
String outFile="C:\\Users\\xqlee\\Desktop\\testout\\swagger_logo.png";
try (FileInputStream fis=new FileInputStream(srcFile);
FileOutputStream fos=new FileOutputStream(outFile)){
PngCompressor.compress(fis,fos);
}