java实现图片压缩

依赖:

<dependency>
    <groupId>net.coobird</groupId>
    <artifactId>thumbnailator</artifactId>
    <version>0.4.7</version>
</dependency>

代码:

        
//realPath是保存到的目标地址
String realPath = "/home/img/test.jpeg";
//file是接口收到的文件
Thumbnails.of(file.getInputStream()).size(500, 800).toFile(realPath);

 

参考:文章1  文章2

 

posted @ 2021-11-09 17:08  ジ绯色月下ぎ  阅读(48)  评论(0编辑  收藏  举报