随着Android手机的越来越先进,摄像头也越来越清晰,但是给我们开发者而言传递的图片也是越来越大,这个时候我们可以对一些没有必要原图展示的图片进行压缩,今天分享下常用的三种方法
第一种,大小压缩
public void bitmapFactory(Uri imageUri){
String[] filePathColumns = {MediaStore.Images.Media.DATA};
Cursor c = getContentResolver().query(imageUri, filePathColumns, null, null, null);
c.moveToFirst();
int columnIndex = c.getColumnIndex(filePathColumns[0]);
String imagePath = c.getString(columnIndex);
c.close();
// 配置压缩的参数
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true; //获取当前图片的边界大小,而不是将整张图片载入在内存中,避免内存溢出
BitmapFactory.decodeFile(imagePath, options);
options.inJustDecodeBounds = false;
inSampleSize的作用就是可以把图片的长短缩小inSampleSize倍,所占内存缩小inSampleSize的平方
options.inSampleSize = caculateSampleSize(options,500,50);
Bitmap bm = BitmapFactory.decodeFile(imagePath, options); // 解码文件
imageView.setImageBitmap(bm);
}
/**
* 计算出所需要压缩的大小
* @param options
* @param reqWidth 我们期望的图片的宽,单位px
* @param reqHeight 我们期望的图片的高,单位px
* @return
*/
private int caculateSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
int sampleSize = 1;
int picWidth = options.outWidth;
int picHeight = options.outHeight;
if (picWidth > reqWidth || picHeight > reqHeight) {
int halfPicWidth = picWidth / 2;
int halfPicHeight = picHeight / 2;
while (halfPicWidth / sampleSize > reqWidth || halfPicHeight / sampleSize > reqHeight) {
sampleSize *= 2;
}
}
return sampleSize;
}
第二种,质量压缩
/**
* 这里我们生成了一个Pic文件夹,在下面放了我们质量压缩后的图片,用于和原图对比
* 压缩图片使用Bitmap.compress(),这里是质量压缩
*/
public void bitmapCompress(Uri uriClipUri) {
try {
//裁剪后的图像转成BitMap
//photoBitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(uriClipUri));
photoBitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), uriClipUri);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
//创建路径
String path = Environment.getExternalStorageDirectory()
.getPath() + "/Pic";
//获取外部储存目录
file = new File(path);
//创建新目录, 创建此抽象路径名指定的目录,包括创建必需但不存在的父目录。
file.mkdirs();
//以当前时间重新命名文件
long i = System.currentTimeMillis();
//生成新的文件
file = new File(file.toString() + "/" + i + ".png");
Log.e("fileNew", file.getPath());
//创建输出流
OutputStream out = null;
try {
out = new FileOutputStream(file.getPath());
} catch (FileNotFoundException e) {
e.printStackTrace();
}
//压缩文件,返回结果,参数分别是压缩的格式,压缩质量的百分比,输出流
boolean bCompress = photoBitmap.compress(Bitmap.CompressFormat.JPEG, 50, out);
try {
photoBitmap = MediaStore.Images.Media.getBitmap(getContentResolver(),Uri.fromFile(file));
} catch (IOException e) {
e.printStackTrace();
}
imageView.setImageBitmap(photoBitmap);
}
第三种,三方框架压缩
//图片压缩
implementation 'me.shouheng.compressor:compressor:1.3.0'
override fun getImages(file: File, mContext: Context) {
Compress.with(mContext, file)
.strategy(Strategies.compressor())
.setConfig(Bitmap.Config.ARGB_8888)
.setMaxHeight(1280f)
.setMaxWidth(720f)
.setScaleMode(ScaleMode.SCALE_WIDTH)
.asFlowable()
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe({
//压缩成功 获取file文件
}, {
//压缩失败
})
}