Thumbnails简介
Thumbnailator是一个优秀的图片处理的Google开源类库;
Thumbnailator支持:
- 指定大小进行缩放
- 按照比例进行缩放
- 不按照比例,指定大小进行缩放
- 旋转
- 水印
- 裁剪
- 转化图像格式
- 输出到OutputStream
- 输出到BufferedImage
SpringBoot引用Thumbnails
一、添加maven库
<dependency>
<groupId>net.coobird</groupId>
<artifactId>thumbnailator</artifactId>
<version>0.4.8</version>
</dependency>
二、常用方法
/**
* 指定大小进行缩放
*
* @throws IOException
*/
private void test1() throws IOException {
/*
* size(width,height) 若图片横比200小,高比300小,不变
* 若图片横比200小,高比300大,高缩小到300,图片比例不变 若图片横比200大,高比300小,横缩小到200,图片比例不变
* 若图片横比200大,高比300大,图片按比例缩