maven引用:
<dependency>
<groupId>org.jpedal</groupId>
<artifactId>OpenViewerFX</artifactId>
<version>6.6.14</version>
</dependency>
Demo:
import com.idrsolutions.image.png.PngCompressor;
import java.io.File;
public class PngTest {
public static void main(String[] args) throws Exception{
String filePath = "C:\\Users\\Owner\\Desktop\\图片素材\\test1.png";
File file = new File(filePath);
File outfile=new File("C:\\Users\\Owner\\Desktop\\图片素材\\test11.png");
PngCompressor.compress(file,outfile);
}}