<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
<version>0.4.17</version>
</dependency>
public static void resizeImage(int targetWidth, int targetHeight) throws IOException {
Thumbnails.of("4.jpeg")// 图片
.size(targetWidth, targetHeight)// 设置图片大小
.outputFormat("JPEG")// 设置图片输出格式
.outputQuality(0.5)// 设置压缩质量,0 - 1之间,1表示不压缩质量
.toFile("4-1.jpeg");// 输出成图片文件
}