private void compressImage(Bitmap image,FileOutputStream b) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
image.compress(Bitmap.CompressFormat.JPEG, 100, baos);//质量压缩方法,这里100表示不压缩,把压缩后的数据存放到baos中
int options = 100;
int i=0;
while ( baos.toByteArray().length / 1024 >100) { //循环判断如果压缩后图片是否大于100kb,大于继续压缩
baos.reset();//重置baos即清空baos
image.compress(Bitmap.CompressFormat.JPEG, options, baos);//这里压缩options%,把压缩后的数据存放到baos中
options -=10;//每次都减少10,注意有可能为负,为负会报错
}
ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());//把压缩后的数据baos存放到ByteArrayInputStream中
Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null);//把ByteArrayInputStream数据生成图片
//把压缩后的图片写入SD卡
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, b);
}
这个函数是把图片压缩到100K以下,但在使用中发现有两个问题
一、 baos.toByteArray().length / 1024 取得的值并不是图片的实际大小,而是有3倍左右的差距
比如图片实际大小是500K,用baos.toByteArray().length / 1024读出来有1500K左右,这是为什么呢?
二、最后写入SD卡的图片只比原图片略小一点
各位:请问把图片压缩到指定尺寸以的正确方法是什么呢?多谢了