# 图片压缩

# Thumbnailator

一个google使用的开源的工具类,是一款强大易用的图片处理工具,优点

  • 压缩程度可控制,想压缩成多小就多小
  • 压缩之后图片尽可能的不失真
  • 压缩速度要快
  • 代码简单,依赖较少
  1. 引入依赖

<dependency>
  <groupId>net.coobird</groupId>
  <artifactId>thumbnailator</artifactId>
  <version>0.4.8</version>
</dependency>
1
2
3
4
5
6
  1. 使用简单
Thumbnails.of("原图文件的路径")
      .scale(1f)
      .outputQuality(0.5f)
      .toFile("压缩后文件的路径");
1
2
3
4

其中的scale是可以指定图片的大小,值在0到1之间,1f就是原图大小,0.5就是原图的一半大小,这里的大小是指图片的长宽。
而outputQuality是图片的质量,值也是在0到1,越接近于1质量越好,越接近于0质量越差。
对于压缩图片来说上面就已经足够了。

  1. 其他用法
  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 {
      
      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();
      }
  
      /**
       * 指定大小进行缩放
       */
      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");
      }
  
      /**
       * 按照比例进行缩放
       * scale(比例)
       */
      private void test2() throws IOException {
          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");
      }
  
      /**
       * 不按照比例,指定大小进行缩放
       * keepAspectRatio(false) 默认是按照比例缩放的
       */
      private void test3() throws IOException {
          Thumbnails.of("images/test.jpg").size(120, 120).keepAspectRatio(false).toFile("C:/image_120x120.jpg");
      }
  
      /**
       * 旋转
       * rotate(角度),正数:顺时针 负数:逆时针
       */
      private void test4() throws IOException {
          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");
      }
  
      /**
       * 水印
       * watermark(位置,水印图,透明度)
       */
      private void test5() throws IOException {
          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");
      }
  
      /**
       * 裁剪
       */
      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");
      }
  
      /**
       * 转化图像格式
       * outputFormat(图像格式)
       */
      private void test7() throws IOException {
          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
       * toOutputStream(流对象)
       */
      private void test8() throws IOException {
          OutputStream os = new FileOutputStream("C:/image_1280x1024_OutputStream.png");
          Thumbnails.of("images/test.jpg").size(1280, 1024).toOutputStream(os);
      }
  
      /**
       * 输出到BufferedImage
       * asBufferedImage() 返回BufferedImage
       */
      private void test9() throws IOException {
          BufferedImage thumbnail = Thumbnails.of("images/test.jpg").size(1280, 1024).asBufferedImage();
          ImageIO.write(thumbnail, "jpg", new File("C:/image_1280x1024_BufferedImage.jpg"));
      }
  }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117

github: https://github.com/coobird/thumbnailator

参考 https://www.cnblogs.com/zhao-shan/p/9803640.html