/**
* Specifies the known formats a bitmap can be compressed into
*/
public enum CompressFormat {
JPEG (0),
PNG (1),
WEBP (2);
CompressFormat(int nativeInt) {
this.nativeInt = nativeInt;
}
final int nativeInt;
}
bitmap.compress(Bitmap.CompressFormat.JPEG, options, stream);
图片压缩希望添加保存图片格式自定义啊,因为同质量下webp格式的体积比jpeg小很多啊。而且现在android4.0以上都支持webp了。