google之Thumbnails图片等比压缩,保持图片清晰

maven之pom.xml依赖


    net.coobird
    thumbnailator
    0.4.8

直接贴代码:

import net.coobird.thumbnailator.Thumbnails;

import java.io.IOException;

/**
 * Created by Liuxd on 2018/08/21.
 */
public class Test {


    public static void main(String[] args) {
//      Thumbnails.of(file.getInputStream()).scale(1.00f).outputQuality(0.25f).toOutputStream(outputStream);
        try {
            //保持纵横比,质量降低为原来的42%
            Thumbnails.of("E:/PICTURE/1.jpg").scale(1.00f).outputQuality(0.42f).toFile("E:/PICTURE/4.jpg");
        } catch (IOException e) {
            e.printStackTrace();
        }

    }
}

 

你可能感兴趣的:(图片处理)