Java图片压缩

utils
/**
* 重新生成图片宽、高
*
* @param srcPath 图片路径
* @param destPath 新生成的图片路径
* @param newWith 新的宽度
* @param newHeight 新的高度
* @param forceSize 是否强制使用指定宽、高,false:会保持原图片宽高比例约束
* @return
* @throws IOException
*/
public static boolean resizeImage(String srcPath, String destPath, int newWith, int newHeight, boolean forceSize) throws IOException {

    if (forceSize) {
        Thumbnails.of(srcPath).forceSize(newWith, newHeight).toFile(destPath);
    } else {
        Thumbnails.of(srcPath).width(newWith).height(newHeight).toFile(destPath);
    }
    return true;
}

依赖

  <dependency>
        <groupId>net.coobird</groupId>
        <artifactId>thumbnailator</artifactId>
        <version>0.4.8</version>
    </dependency>
@ApiOperation("图片压缩测试")
@PostMapping(value = "/compreePhotoTest")
@ApiImplicitParam(name = "photo", value = "图片")
public AjaxResult compreePhotoTest(@RequestParam(required = false, value = "photo") MultipartFile[] photo, @RequestParam(required = false, value = "annexType") String annexType, @RequestParam(value = "relicNum") String relicNum) {
    try {
        ResizeImageUtils.resizeImage("C:/Users/Administrator/Desktop/timg.jpg", "D:/testPhoto/test.jpg", 200, 200, true);
        return AjaxResult.success();
    } catch (Exception e) {
        log.info("图片压缩测试失败!", e);
        return AjaxResult.error("图片压缩测试失败:" + e.getMessage());
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值