高质量图片操作Thumbnailator库

官方api:Thumbnailator API Documentation (Version 0.4.8)

​​​​​​帮助文档

Thumbnails:

这个是谷歌的一个包。可以用来干以下事情:

1.生成缩率图;
2.添加水印;
3.图片旋转;
4.图片大小缩放;
5.图片压缩;
Thumbnailator的github地址

1,添加maven依赖


    net.coobird
    thumbnailator
    0.4.8

2,图片压缩到指定分辨率

public static byte[] resizeImageData(BufferedImage sourceImg, int width, int height) {
    long t1 = System.currentTimeMillis();
    if (sourceImg =

你可能感兴趣的:(数学建模,java,算法)