android 将图片压缩到指定的大小的示例

作者:peirato_ 时间:2021-07-29 23:09:23 

从网上收集后自己写的一个方法;

1.首先是一个根据分辨率压缩的类,首先对图片进行一次压缩


 /**
 * 根据分辨率压缩图片比例
 *
 * @param imgPath
 * @param w
 * @param h
 * @return
 */
private static Bitmap compressByResolution(String imgPath, int w, int h) {
 BitmapFactory.Options opts = new BitmapFactory.Options();
 opts.inJustDecodeBounds = true;
 BitmapFactory.decodeFile(imgPath, opts);

int width = opts.outWidth;
 int height = opts.outHeight;
 int widthScale = width / w;
 int heightScale = height / h;

int scale;
 if (widthScale < heightScale) { //保留压缩比例小的
  scale = widthScale;
 } else {
  scale = heightScale;
 }

if (scale < 1) {
  scale = 1;
 }
 Log.i(TAG,"图片分辨率压缩比例:" + scale);

opts.inSampleSize = scale;

opts.inJustDecodeBounds = false;

Bitmap bitmap = BitmapFactory.decodeFile(imgPath, opts);

return bitmap;
}

2.第二就是循环对图片的压缩,直到压缩到指定的大小以下为止(重要!)


/**
 * 根据分辨率压缩
 *
 * @param srcPath 图片路径
 * @param ImageSize 图片大小 单位kb
 * @return
 */
public static boolean compressBitmap(String srcPath, int ImageSize, String savePath) {
 int subtract;
 Log.i(TAG, "图片处理开始..");
 Bitmap bitmap = compressByResolution(srcPath, 1024, 720); //分辨率压缩
 if (bitmap == null) {
  Log.i(TAG, "bitmap 为空");
  return false;
 }
 ByteArrayOutputStream baos = new ByteArrayOutputStream();
 int options = 100;
 bitmap.compress(Bitmap.CompressFormat.JPEG, options, baos);//质量压缩方法,这里100表示不压缩,把压缩后的数据存放到baos中
 Log.i(TAG, "图片分辨率压缩后:" + baos.toByteArray().length / 1024 + "KB");

while (baos.toByteArray().length > ImageSize * 1024) { //循环判断如果压缩后图片是否大于ImageSize kb,大于继续压缩
  subtract = setSubstractSize(baos.toByteArray().length / 1024);
  baos.reset();//重置baos即清空baos
  options -= subtract;//每次都减少10
  bitmap.compress(Bitmap.CompressFormat.JPEG, options, baos);//这里压缩options%,把压缩后的数据存放到baos中
  Log.i(TAG, "图片压缩后:" + baos.toByteArray().length / 1024 + "KB");
 }
 Log.i(TAG, "图片处理完成!" + baos.toByteArray().length / 1024 + "KB");
 try {
  FileOutputStream fos = new FileOutputStream(new File(savePath));//将压缩后的图片保存的本地上指定路径中
  fos.write(baos.toByteArray());
  fos.flush();
  fos.close();
 } catch (Exception e) {
  e.printStackTrace();
 }

if (bitmap != null) {
  bitmap.recycle();
 }

return true; //压缩成功返回ture
}

在这其中 


/**
 * 根据图片的大小设置压缩的比例,提高速度
 *
 * @param imageMB
 * @return
 */
private static int setSubstractSize(int imageMB) {

if (imageMB > 1000) {
  return 60;
 } else if (imageMB > 750) {
  return 40;
 } else if (imageMB > 500) {
  return 20;
 } else {
  return 10;
 }

}

这个方法用来动态设置每次压缩的比例,主要用于提升压缩的时间,这其中的数值是我大概测试出来的可以修改成你认为比较合适的

3.最后

压缩图片费时又费内存,很明显执行的时候需要在子线程中完成,如果需要的话可以加一个压缩完成的监听

下载地址:CommonUtils_jb51.rar

来源:http://blog.csdn.net/peirato_/article/details/55213545

标签:android,压缩,图片
0
投稿

猜你喜欢

  • android I/0流操作文件(文件存储)

    2021-11-13 19:42:37
  • Java中的this、package、import示例详解

    2021-06-10 10:37:50
  • Android 蓝牙2.0的使用方法详解

    2022-10-19 17:21:21
  • android中RecyclerView自定义分割线实现

    2023-08-03 17:37:47
  • MyBatis中映射文件的使用案例代码

    2021-09-02 23:55:41
  • 详解StackExchange.Redis通用封装类分享

    2022-07-06 00:41:32
  • mybatis log4j2打印sql+日志实例代码

    2022-09-30 16:50:08
  • java多线程入门知识及示例程序

    2021-11-30 03:17:58
  • Android中TextView动态设置缩进距离的方法

    2023-08-07 09:52:00
  • Android Handler主线程和一般线程通信的应用分析

    2022-10-29 14:08:13
  • maven下载jar包改用阿里云maven库的方法

    2023-02-13 07:41:58
  • arthas jprofiler做复杂链路的调用分析

    2022-01-15 12:01:25
  • 基于java Files类和Paths类的用法(详解)

    2021-08-11 11:22:55
  • 一文带你搞懂Redis分布式锁

    2021-09-26 12:56:14
  • 生成8位随机不重复的数字编号的方法

    2023-11-26 07:00:29
  • Spring Boot整合ElasticSearch实现多版本兼容的方法详解

    2021-09-20 18:06:22
  • springmvc+mybatis 做分页sql 语句实例代码

    2021-09-11 19:29:06
  • 使用Springboot封装一个自适配的数据单位转换工具类

    2022-06-07 07:12:14
  • Android编程之动态壁纸实例分析

    2023-02-23 07:05:15
  • java 算法之归并排序详解及实现代码

    2021-12-27 01:52:11
  • asp之家 软件编程 m.aspxhome.com