直接上代码自己试试就可以了
/**
- 图片压缩
- @param file
- @return
- @throws Exception
*/
public static File pictureCompression(File file) throws Exception {
String property = System.getProperty(“user.dir”);
Thumbnails.of(file).scale(1f).outputQuality(0.2f).toFile(property + File.separator + new Date().getTime() + “.jpg”);
File newFile = new File(property + File.separator + new Date().getTime() + “.jpg”);
return newFile;
}