Thumbnailator的简介和使用范例(图片压缩)

1.简单介绍

        借用红薯对Thumbnailator 的描述:Thumbnailator是一个用来生成图像缩略图的 Java类库,通过很简单的代码即可生成图片缩略图,也可直接对一整个目录的图片生成缩略图。

       有了这玩意,就不用在费心思使用Image I/O API,Java 2D API等等来生成缩略图了。

       直接上代码,先来看一个最简单的例子:

的确是爽歪歪的说,一行代码就把大鸟变小鸟。

那我要是有一个文件夹都需要生成缩略图,那还是很麻烦,有没有对文件夹下所有图片生成缩略图呢?答案是肯定的:

Thumbnails.of(new File("path/to/directory")
.listFiles())         
.size(640, 480)         
.outputFormat("jpg")         
.toFiles(Rename.PREFIX_DOT_THUMBNAIL);

       这个代码想不用我解释就能看懂什么意思了吧?我个人很喜欢这种API的方式,简洁,易懂,明了。

2.特点

    2.1.可以根据现有的图片生成高质量的缩略图

    下面是一个对比:

Thumbnailator生成的缩略图

 

Graphics.drawImage生成的缩略图

2.2.可以在缩略图中嵌入水印,并且可以设置水印的透明度:
      

 

2.3.支持生成经过旋转后的缩略图:

      

       代码:

for (int i : new int[] {0, 90, 180, 270, 45}) {
    Thumbnails.of(new File("coobird.png"))
            .size(100, 100)
            .rotate(i)
            .toFile(new File("image-rotated-" + i + ".png"));
}

2.4.可以生成多种质量模式的缩略图

2.5.如果需要的话,在生成缩略图的时候可以保持和源图像一样的的宽高比

3.更多实战例子

3.1.最简单的例子

 

Thumbnails.of(new File("original.jpg"))
        .size(160, 160)
        .toFile(new File("thumbnail.jpg"));

 最后一行的toFile()方法还接受一个String类型的参数,如下面的代码和上面的作用的一样的:

Thumbnails.of("original.jpg")
        .size(160, 160)
        .toFile("thumbnail.jpg");

 

3.2.生成一个带有旋转和水印的缩略图:

Thumbnails.of(new File("original.jpg"))
        .size(160, 160)
        .rotate(90)
        .watermark(Positions.BOTTOM_RIGHT, ImageIO.read(new File("watermark.png")), 0.5f)
        .outputQuality(0.8f)
        .toFile(new File("image-with-watermark.jpg"));

这段代码是从original.jpg这张图片生成最大尺寸160*160,顺时针旋转90°,水印放在右下角,50%的透明度,80%的质量压缩的缩略图。

3.3.把生成的图片输出到输出流(OutPutStream)中

OutputStream os = ...;
                
Thumbnails.of("large-picture.jpg")
        .size(200, 200)
        .outputFormat("png")
        .toOutputStream(os);

 

3.4.按一定的比例生成缩略图

BufferedImage originalImage = ImageIO.read(new File("original.png"));

BufferedImage thumbnail = Thumbnails.of(originalImage)
        .scale(0.25f)
        .asBufferedImage();

生成缩略图的大小是原来的25%

 

工具类:

import net.coobird.thumbnailator.Thumbnails;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
 
/**
 * 图片压缩Utils
 *
 * @author worstEzreal
 * @version V1.1.0
 * @date 2018/3/12
 */
public class PicUtils {
 
    private static Logger logger = LoggerFactory.getLogger(PicUtils.class);
 
//    public static void main(String[] args) throws IOException {
//        byte[] bytes = FileUtils.readFileToByteArray(new File("D:\\1.jpg"));
//        long l = System.currentTimeMillis();
//        bytes = PicUtils.compressPicForScale(bytes, 300, "x");// 图片小于300kb
//        System.out.println(System.currentTimeMillis() - l);
//        FileUtils.writeByteArrayToFile(new File("D:\\dd1.jpg"), bytes);
//    }
 
    /**
     * 根据指定大小压缩图片
     *
     * @param imageBytes  源图片字节数组
     * @param desFileSize 指定图片大小,单位kb
     * @param imageId     影像编号
     * @return 压缩质量后的图片字节数组
     */
    public static byte[] compressPicForScale(byte[] imageBytes, long desFileSize, String imageId) {
        if (imageBytes == null || imageBytes.length <= 0 || imageBytes.length < desFileSize * 1024) {
            return imageBytes;
        }
        long srcSize = imageBytes.length;
        double accuracy = getAccuracy(srcSize / 1024);
        try {
            while (imageBytes.length > desFileSize * 1024) {
                ByteArrayInputStream inputStream = new ByteArrayInputStream(imageBytes);
                ByteArrayOutputStream outputStream = new ByteArrayOutputStream(imageBytes.length);
                Thumbnails.of(inputStream)
                        .scale(accuracy)
                        .outputQuality(accuracy)
                        .toOutputStream(outputStream);
                imageBytes = outputStream.toByteArray();
            }
            logger.info("【图片压缩】imageId={} | 图片原大小={}kb | 压缩后大小={}kb",
                    imageId, srcSize / 1024, imageBytes.length / 1024);
        } catch (Exception e) {
            logger.error("【图片压缩】msg=图片压缩失败!", e);
        }
        return imageBytes;
    }
 
    /**
     * 自动调节精度(经验数值)
     *
     * @param size 源图片大小
     * @return 图片压缩质量比
     */
    private static double getAccuracy(long size) {
        double accuracy;
        if (size < 900) {
            accuracy = 0.85;
        } else if (size < 2047) {
            accuracy = 0.6;
        } else if (size < 3275) {
            accuracy = 0.44;
        } else {
            accuracy = 0.4;
        }
        return accuracy;
    }
 

}

 

样例文章:https://blog.csdn.net/zmx729618/article/details/78729049

 

整理翻译自:

http://code.google.com/p/thumbnailator/

http://code.google.com/p/thumbnailator/wiki/Examples

Thumbnailator的下载地址:

http://code.google.com/p/thumbnailator/downloads/list

Java Doc

http://thumbnailator.googlecode.com/hg/javadoc/index.html

 

jar包下载:

https://download.csdn.net/download/mrlin6688/11159403

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值