java压缩图片工具类Thumbnailator

参考资料:
https://www.cnblogs.com/linkstar/p/7412012.html

1 介绍

Thumbnailator是一个简单好用的图片处理的Google开源Java类库。
下载地址:
http://www.java2s.com/Code/Jar/t/Downloadthumbnailator042alljar.htm
maven地址:

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

2 简单使用

2.1 指定大小进行缩放

    private void test1() throws IOException {
        /*
         * size(width,height) 若图片横比200小,高比300小,不变
         * 若图片横比200小,高比300大,高缩小到300,图片比例不变 若图片横比200大,高比300小,横缩小到200,图片比例不变
         * 若图片横比200大,高比300大,图片按比例缩小,横为200或高为300
         */
        Thumbnails.of("D:\1.jpeg").size(200, 300).toFile("D:\2.jpeg");
        Thumbnails.of("D:\3.jpeg").size(2560, 2048).toFile("D:\4.jpeg");
    }

2.2 按照比例进行缩放

    private void test2() throws IOException {
        /**
         * scale(比例)
         */
        Thumbnails.of("D:\1.jpeg").scale(0.25f).toFile("D:\2.jpeg");
        Thumbnails.of("D:\3.jpeg").scale(1.10f).toFile("D:\4.jpeg");
    }

2.3 不按照比例,指定大小进行缩放

    private void test3() throws IOException {
        /**
         * keepAspectRatio(false) 默认是按照比例缩放的
         */
        Thumbnails.of("D:\1.jpeg").size(120, 120).keepAspectRatio(false).toFile("D:\2.jpeg");
    }

2.4 旋转

    private void test4() throws IOException {
        /**
         * rotate(角度),正数:顺时针 负数:逆时针
         */
        Thumbnails.of("D:\1.jpg").size(1280, 1024).rotate(90).toFile("D:\2.jpg");
        Thumbnails.of("D:\3.jpg").size(1280, 1024).rotate(-90).toFile("D:\4.jpg");
    }

2.5 水印

    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");
    }

2.6 裁剪

    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");
    }

2.7 转化图像格式

    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");
    }

2.8 输出到OutputStream

    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);
    }

2.9 输出到BufferedImage

    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"));
    }

3 png压缩问题

经过其他用户使用后的反馈,这个工具无法正确压缩出png格式的图片,因为png本身就是一种无损的图片格式,而jpg是一种压缩的图片格式;当前方法目的是为了在尽可能不丢失图片质量的情况下进行的压缩;建议将图片压缩后的格式设置成jpg来解决;.outputFormat(“jpg”)工具源码本身最后还是调用jdk中ImageIO.createImageOutputStream(fos);来实现的

  • 2
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值