0%

图片压缩

图片压缩

添加依赖

1
2
3
4
5
<dependency>
<groupId>com.siashan</groupId>
<artifactId>toolkit-image</artifactId>
<version>1.1.9</version>
</dependency>

使用Thumbnails来进行图片压缩

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

public static void compressImage(String path,
int width, int height,
String suffix,
String outputFilename) {

try {
ByteArrayOutputStream out = new ByteArrayOutputStream();
BufferedImage image = Thumbnails.of(path)
.size(width, height)
.outputFormat(suffix)
.asBufferedImage();
ImageIO.write(image,suffix, new File(outputFilename));

} catch (IOException e) {


}
}

public static void main(String[] args) {
compressImage("/Users/zhanghe/Desktop/线上问题查找.png", 1048, 1000,"png",
"/Users/zhanghe/Desktop/Optimize.png");


}

欢迎关注我的其它发布渠道