场景一:图片尺寸不变,修改图片文件类型
使用:
Thumbnails.of("F:\\image\\IMG_20131229_114806.png") .scale(1f)
.outputFormat("jpg")
.toFile("F:\\image\\output\\IMG_20131229_114806");
注意:outputFormat:输出的图片格式。注意使用该方法后toFile()方法不要再含有文件类型的后缀了,否则会生成 IMG_20131229_114806.jpg.jpg 的图片。
场景二:图片尺寸不变,压缩图片文件大小
使用:
Thumbnails.of("F:\\image\\IMG_20131229_114806.png") .scale(1f)
.outputQuality(0.25f)
.outputFormat("jpg")
.toFile("F:\\image\\output\\IMG_20131229_114806");
注意:outputQuality:输出的图片质量,范围:0.0~1.0,1为最高质量。注意使用该方法时输出的图片格式必须为jpg(即outputFormat("jpg")。其他格式我没试过,感兴趣的自己可以试试)。否则若是输出png格式图片,则该方法作用无效【这其实应该算是bug】。
场景三:压缩至指定图片尺寸(例如:横400高300),不保持图片比例
使用:
Thumbnails.of("F:\\image\\IMG_20131229_114806.png")
.forceSize(400, 300)
.toFile("F:\\image\\output\\IMG_20131229_114806");
场景四:压缩至指定图片尺寸(例如:横400高300),保持图片不变形,多余部分裁剪掉
使用:
String imagePath = "F:\\image\\IMG_20131229_114806.jpg";
BufferedImage image = ImageIO.read(new File(imagePath));
Builder<BufferedImage> builder = null;
int imageWidth = image.getWidth();
int imageHeitht = image.getHeight();
if ((float)300 / 400 != (float)imageWidth / imageHeitht) {
if (imageWidth > imageHeitht) {
image = Thumbnails.of(imagePath).height(300).asBufferedImage();
} else {
image = Thumbnails.of(imagePath).width(400).asBufferedImage();
}
builder = Thumbnails.of(image).sourceRegion(Positions.CENTER, 400, 300).size(400, 300);
} else {
builder = Thumbnails.of(image).size(400, 300);
}
builder.outputFormat("jpg").toFile("F:\\image\\output\\IMG_20131229_114806");
这种情况复杂些,既不能用size()方法(因为横高比不一定是4/3,这样压缩后的图片横为400或高为300),也不能用forceSize()方法。首先判断横高比,确定是按照横400压缩还是高300压缩,压缩后按中心400*300的区域进行裁剪,这样得到的图片便是400*300的裁剪后缩略图。
使用size()或forceSize()方法时,如果图片比指定的尺寸要小(比如size(400, 300),而图片为40*30),则会拉伸到指定尺寸。