转自:
android bitmap compress(图片压缩)
android 图片压缩,并保存在本地文件中
摘要: android bitmap compress
android的照相功能随着手机硬件的发展,变得越来越强大,能够找出很高分辨率的图片。
有些场景中,需要照相并且上传到服务,但是由于图片的大小太大,那么就上传就会很慢(在有些网络情况下),而且很耗流量,要想速度快,那么就需要减小图片的大小。减少图片的大小有两种方法,1.
照小图片; 2. 压缩大图片。 照相时获取小图片一般不太符合要求,因为,图片的清晰度会很差,但是这种情况有个好处就是应用速度会快些;
压缩图片,就是把大图片压缩小,降低图片的质量,在一定范围内,降低图片的大小,并且满足需求(图片仍就清晰)。下面组要是介绍图片的压缩:
以下为项目中的一段代码,在此记录一下
package com.example.a.testduoxuantupian;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Environment;
import android.util.DisplayMetrics;
import android.view.ViewGroup;
import android.widget.ImageView;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.lang.reflect.Field;
/** * Created by a on 2016/3/31. */
public class ImageUtils {
/** * 从本地path中获取bitmap,压缩后保存小图片到本地 * * @param context * @param path 图片存放的路径 */
public static String saveBitmap(Context context, String path) {
String compressdPicPath="";
// ★★★★★★★★★★★★★★重点★★★★★★★★★★★★★
/* //★如果不压缩直接从path获取bitmap,这个bitmap会很大,下面在压缩文件到100kb时,会循环很多次, // ★而且会因为迟迟达不到100k,options一直在递减为负数,直接报错 //★ 即使原图不是太大,options不会递减为负数,也会循环多次,UI会卡顿,所以不推荐不经过压缩,直接获取到bitmap Bitmap bitmap=BitmapFactory.decodeFile(path);*/
// ★★★★★★★★★★★★★★重点★★★★★★★★★★★★★
// 建议先将图片压缩到控件所显示的尺寸大小后,再压缩图片质量
// 首先得到手机屏幕的高宽,根据此来压缩图片,当然想要获取跟精确的控件显示的高宽(更加节约内存),可以使用getImageViewSize();
DisplayMetrics displayMetrics = context.getResources().getDisplayMetrics();
int width = displayMetrics.widthPixels; // 屏幕宽度(像素)
int height = displayMetrics.heightPixels; // 屏幕高度(像素)
// 获取按照屏幕高宽压缩比压缩后的bitmap
Bitmap bitmap = decodeSampledBitmapFromPath(path, width, height);
String oldName=path.substring(path.lastIndexOf("/"), path.lastIndexOf("."));
String name=oldName+"_compress.jpg";//★很奇怪oldName之前不能拼接字符串,只能拼接在后面,否则图片保存失败
String saveDir = Environment.getExternalStorageDirectory()
+ "/compress";
File dir = new File(saveDir);
if (!dir.exists()) {
dir.mkdir();
}
// 保存入sdCard
File file = new File(saveDir, name);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
/* options表示 如果不压缩是100,表示压缩率为0。如果是70,就表示压缩率是70,表示压缩30%; */
int options = 100;
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
while (baos.toByteArray().length / 1024 > 500) {
// 循环判断如果压缩后图片是否大于500kb继续压缩
baos.reset();
options -= 10;
if (options < 11) {//为了防止图片大小一直达不到500kb,options一直在递减,当options<0时,下面的方法会报错
// 也就是说即使达不到500kb,也就压缩到10了
bitmap.compress(Bitmap.CompressFormat.JPEG, options, baos);
break;
}
// 这里压缩options%,把压缩后的数据存放到baos中
bitmap.compress(Bitmap.CompressFormat.JPEG, options, baos);
}
try {
FileOutputStream out = new FileOutputStream(file);
out.write(baos.toByteArray());
out.flush();
out.close();
compressdPicPath=file.getAbsolutePath();
} catch (IOException e) {
e.printStackTrace();
}
return compressdPicPath;
}
/** * 根据ImageView获取适当的压缩的宽和高 * 尽可能得到ImageView的精确的宽高 * * @param imageView * @return */
public static ImageSize getImageViewSize(ImageView imageView) {
// 得到屏幕的宽度
DisplayMetrics displayMetrics = imageView.getContext().getResources().getDisplayMetrics();
ImageSize imageSize = new ImageSize();
ViewGroup.LayoutParams lp = imageView.getLayoutParams();
// ------------------------------------尽可能得到ImageView的精确的宽高-------------------------------------------------------------
// 得到imageView的实际宽度(为了压缩图片,这里一定要得到imageview的宽高)必须压缩!,否则OOM!!!!!!!!!!
int width = imageView.getWidth();
if (width <= 0) {//可能imageView刚new出来还没有添加到容器当中,width可能为0
width = lp.width;//获取imageView在layout中声明的宽度
}
if (width <= 0) {//如果imageView设置的是WRAP_CONTENT=-1或者MATHC_PARENT=-2,得到的width还是0
// TODO: 2016/3/19 此方法在API16以上才可以使用,为了兼容低版本,一会用反射获取,已解决
// width = imageView.getMaxWidth();//检查最大值(此方法在API16以上才可以使用,为了兼容低版本,一会用反射获取)
width = getImageViewFieldValue(imageView, "mMaxWidth");//检查最大值(此方法在API16以上才可以使用,为了兼容低版本,一会用反射获取)
}
if (width <= 0) {//如果还是得不到width,就设置为屏幕的宽度
width = displayMetrics.widthPixels;
}
// ----------------------------------------
// 得到imageView的实际高度(为了压缩图片,这里一定要得到imageview的宽高)必须压缩!,否则OOM!!!!!!!!!!
int height = imageView.getHeight();
if (height <= 0) {//可能imageView刚new出来还没有添加到容器当中,width可能为0
height = lp.height;//获取imageView在layout中声明的高度
}
if (height <= 0) {//如果imageView设置的是WRAP_CONTENT=-1或者MATHC_PARENT=-2,得到的width还是0
// TODO: 2016/3/19 此方法在API16以上才可以使用,为了兼容低版本,一会用反射获取,已解决
// height = imageView.getMaxHeight();//检查最大值(此方法在API16以上才可以使用,为了兼容低版本,一会用反射获取)
height = getImageViewFieldValue(imageView, "mMaxHeight");//检查最大值(此方法在API16以上才可以使用,为了兼容低版本,一会用反射获取)
}
if (height <= 0) {//如果还是得不到width,就设置为屏幕的高度
height = displayMetrics.heightPixels;
}
// --------------------------------尽可能得到ImageView的精确的宽高------------------------------------------------------------------
imageSize.width = width;
imageSize.height = height;
return imageSize;
}
/** * 通过反射获取imageview的某个属性值(imageView.getMaxWidth()这个方法在api16以上才可以用,所以使用反射得到这个width属性值) * * @param object * @param fieldName * @return */
private static int getImageViewFieldValue(Object object, String fieldName) {
int value = 0;
try {
Field field = ImageView.class.getDeclaredField(fieldName);
field.setAccessible(true);
int fieldValue = field.getInt(object);
if (fieldValue > 0 && fieldValue < Integer.MAX_VALUE) {
value = fieldValue;
}
} catch (Exception e) {
e.printStackTrace();
}
return value;
}
/** * 根据图片要显示的宽和高,对图片进行压缩,避免OOM * * @param path * @param width 要显示的imageview的宽度 * @param height 要显示的imageview的高度 * @return */
private static Bitmap decodeSampledBitmapFromPath(String path, int width, int height) {
// 获取图片的宽和高,并不把他加载到内存当中
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(path, options);
options.inSampleSize = caculateInSampleSize(options, width, height);
// 使用获取到的inSampleSize再次解析图片(此时options里已经含有压缩比 options.inSampleSize,再次解析会得到压缩后的图片,不会oom了 )
options.inJustDecodeBounds = false;
Bitmap bitmap = BitmapFactory.decodeFile(path, options);
return bitmap;
}
/** * 根据需求的宽和高以及图片实际的宽和高计算SampleSize * * @param options * @param reqWidth 要显示的imageview的宽度 * @param reqHeight 要显示的imageview的高度 * @return * @compressExpand 这个值是为了像预览图片这样的需求,他要比所要显示的imageview高宽要大一点,放大才能清晰 */
private static int caculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
int width = options.outWidth;
int height = options.outHeight;
int inSampleSize = 1;
if (width >= reqWidth || height >= reqHeight) {
int widthRadio = Math.round(width * 1.0f / reqWidth);
int heightRadio = Math.round(width * 1.0f / reqHeight);
inSampleSize = Math.max(widthRadio, heightRadio);
}
return inSampleSize;
}
}