Java:使用Thumbnailator实现图片压缩

Maven依赖

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

说明信息

thumbnailator源码地址:https://github.com/coobird/thumbnailator,该依赖还可以进行旋转,裁切,加水印等,详情请看源码中的说明信息

常见用法

Thumbnails.of(原图文件路径或者file文件对象) 
        .scale(1f) 
        .outputQuality(0.5f) 
        .toFile(压缩后文件的路径或者file文件对象);

说明:

  1. scale:图片缩放比率;值在01之间,比如0.5代表原图高度和宽度缩小一半
  2. outputQuality:图片质量,值在01之间,数值越大质量越好

常见用法举例

public class Test {
	// demo来源于公司即时通讯项目,在用户头像上传接口中需要使用图片压缩功能。原因:由于用户上传的图片可能很大,所以需要进行压缩存储
    public static void main(String[] args) throws Exception {
        File file = new File("C:\\test\\20220619\\city.jpg");
        BufferedImage bi1 = ImageIO.read(new FileInputStream(file));
        System.out.printf("原始图片》大小:%skb;宽度:%s像素;高度:%s像素\n", file.length() / 1024, bi1.getWidth(), bi1.getHeight());
        File defaultPhoto = new File("C:\\test\\20220619\\1.jpg");
        System.out.println(file.length());
        if (file.length() >= 1024 * 1024 * 5) {
            Thumbnails.of(file).scale(0.5).toFile(defaultPhoto);
            System.out.printf("图片压缩率:%s\n", 0.5);
        } else if (file.length() >= 1024 * 1024) {
            Thumbnails.of(file).scale(0.7).toFile(defaultPhoto);
            System.out.printf("图片压缩率:%s\n", 0.7);
        } else if (file.length() >= 1024 * 512) {
            Thumbnails.of(file).scale(0.9).toFile(defaultPhoto);
            System.out.printf("图片压缩率:%s\n", 0.9);
        }
        BufferedImage bi2 = ImageIO.read(new FileInputStream(defaultPhoto));
        System.out.printf("压缩图片》大小:%skb;宽度:%s像素;高度:%s像素\n", defaultPhoto.length() / 1024, bi2.getWidth(), bi2.getHeight());
    }
}

结果:

原始图片》大小:4424kb;宽度:7360像素;高度:4912像素
4530793
图片压缩率:0.7
压缩图片》大小:1612kb;宽度:5152像素;高度:3438像素

其中4530793thumbnailator依赖内部打印的文件字节数

压缩效果对比截图如下:

在这里插入图片描述

其它用法举例

import java.awt.image.BufferedImage;
 
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
 
import javax.imageio.ImageIO;
 
import net.coobird.thumbnailator.Thumbnails;
import net.coobird.thumbnailator.geometry.Positions;
 
public class ThumbnailatorTest {
 
    /**
     * 
     * @param args
     * @throws IOException
     */
    public static void main(String[] args) throws IOException {
        ThumbnailatorTest thumbnailatorTest = new ThumbnailatorTest();
        thumbnailatorTest.test1();
        thumbnailatorTest.test2();
        thumbnailatorTest.test3();
        thumbnailatorTest.test4();
        thumbnailatorTest.test5();
        thumbnailatorTest.test6();
        thumbnailatorTest.test7();
        thumbnailatorTest.test8();
        thumbnailatorTest.test9();
    }
 
    /**
     * 指定大小进行缩放
     * 
     * @throws IOException
     */
    private void test1() throws IOException {
        /*
         * size(width,height) 若图片横比200小,高比300小,不变
         * 若图片横比200小,高比300大,高缩小到300,图片比例不变 若图片横比200大,高比300小,横缩小到200,图片比例不变
         * 若图片横比200大,高比300大,图片按比例缩小,横为200或高为300
         */
        Thumbnails.of("images/test.jpg").size(200, 300).toFile("C:/image_200x300.jpg");
        Thumbnails.of("images/test.jpg").size(2560, 2048).toFile("C:/image_2560x2048.jpg");
    }
 
    /**
     * 按照比例进行缩放
     * 
     * @throws IOException
     */
    private void test2() throws IOException {
        /**
         * scale(比例)
         */
        Thumbnails.of("images/test.jpg").scale(0.25f).toFile("C:/image_25%.jpg");
        Thumbnails.of("images/test.jpg").scale(1.10f).toFile("C:/image_110%.jpg");
    }
 
    /**
     * 不按照比例,指定大小进行缩放
     * 
     * @throws IOException
     */
    private void test3() throws IOException {
        /**
         * keepAspectRatio(false) 默认是按照比例缩放的
         */
        Thumbnails.of("images/test.jpg").size(120, 120).keepAspectRatio(false).toFile("C:/image_120x120.jpg");
    }
 
    /**
     * 旋转
     * 
     * @throws IOException
     */
    private void test4() throws IOException {
        /**
         * rotate(角度),正数:顺时针 负数:逆时针
         */
        Thumbnails.of("images/test.jpg").size(1280, 1024).rotate(90).toFile("C:/image+90.jpg");
        Thumbnails.of("images/test.jpg").size(1280, 1024).rotate(-90).toFile("C:/iamge-90.jpg");
    }
 
    /**
     * 水印
     * 
     * @throws IOException
     */
    private void test5() throws IOException {
        /**
         * watermark(位置,水印图,透明度)
         */
        Thumbnails.of("images/test.jpg").size(1280, 1024).watermark(Positions.BOTTOM_RIGHT, ImageIO.read(new File("images/watermark.png")), 0.5f)
                .outputQuality(0.8f).toFile("C:/image_watermark_bottom_right.jpg");
        Thumbnails.of("images/test.jpg").size(1280, 1024).watermark(Positions.CENTER, ImageIO.read(new File("images/watermark.png")), 0.5f)
                .outputQuality(0.8f).toFile("C:/image_watermark_center.jpg");
    }
 
    /**
     * 裁剪
     * 
     * @throws IOException
     */
    private void test6() throws IOException {
        /**
         * 图片中心400*400的区域
         */
        Thumbnails.of("images/test.jpg").sourceRegion(Positions.CENTER, 400, 400).size(200, 200).keepAspectRatio(false)
                .toFile("C:/image_region_center.jpg");
        /**
         * 图片右下400*400的区域
         */
        Thumbnails.of("images/test.jpg").sourceRegion(Positions.BOTTOM_RIGHT, 400, 400).size(200, 200).keepAspectRatio(false)
                .toFile("C:/image_region_bootom_right.jpg");
        /**
         * 指定坐标
         */
        Thumbnails.of("images/test.jpg").sourceRegion(600, 500, 400, 400).size(200, 200).keepAspectRatio(false).toFile("C:/image_region_coord.jpg");
    }
 
    /**
     * 转化图像格式
     * 
     * @throws IOException
     */
    private void test7() throws IOException {
        /**
         * outputFormat(图像格式)
         */
        Thumbnails.of("images/test.jpg").size(1280, 1024).outputFormat("png").toFile("C:/image_1280x1024.png");
        Thumbnails.of("images/test.jpg").size(1280, 1024).outputFormat("gif").toFile("C:/image_1280x1024.gif");
    }
 
    /**
     * 输出到OutputStream
     * 
     * @throws IOException
     */
    private void test8() throws IOException {
        /**
         * toOutputStream(流对象)
         */
        OutputStream os = new FileOutputStream("C:/image_1280x1024_OutputStream.png");
        Thumbnails.of("images/test.jpg").size(1280, 1024).toOutputStream(os);
    }
 
    /**
     * 输出到BufferedImage
     * 
     * @throws IOException
     */
    private void test9() throws IOException {
        /**
         * asBufferedImage() 返回BufferedImage
         */
        BufferedImage thumbnail = Thumbnails.of("images/test.jpg").size(1280, 1024).asBufferedImage();
        ImageIO.write(thumbnail, "jpg", new File("C:/image_1280x1024_BufferedImage.jpg"));
    }
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值