文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何解决Android中图片处理避免出现oom的问题

2023-05-30 20:54

关注

这篇文章主要介绍如何解决Android中图片处理避免出现oom的问题,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

1. 通过设置采样率压缩

res资源图片压缩 decodeResource

  public Bitmap decodeSampledBitmapFromResource(Resources res, int resId, int reqWidth, int reqHeight) {    // First decode with inJustDecodeBounds=true to check dimensions    final BitmapFactory.Options options = new BitmapFactory.Options();    options.inJustDecodeBounds = true;    BitmapFactory.decodeResource(res, resId, options);    // Calculate inSampleSize    options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);    // Decode bitmap with inSampleSize set    options.inJustDecodeBounds = false;    return BitmapFactory.decodeResource(res, resId, options);  }

uri图片压缩 decodeStream

  public Bitmap decodeSampledBitmapFromUri(Uri uri, int reqWidth, int reqHeight) {    Bitmap bitmap = null;    try {    BitmapFactory.Options options = new BitmapFactory.Options();    options.inJustDecodeBounds = true;    BitmapFactory.decodeStream(getContentResolver().openInputStream(uri), null, options);    options.inSampleSize = BitmapUtils.calculateInSampleSize(options,        UtilUnitConversion.dip2px(MyApplication.mContext, reqWidth), UtilUnitConversion.dip2px(MyApplication.mContext, reqHeight));    options.inJustDecodeBounds = false;    bitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(uri), null, options);    } catch (Exception e) {      e.printStackTrace();    }    return bitmap;  }

本地File url图片压缩

  public static Bitmap getloadlBitmap(String load_url, int width, int height) {    Bitmap bitmap = null;    if (!UtilText.isEmpty(load_url)) {      File file = new File(load_url);      if (file.exists()) {        FileInputStream fs = null;        try {          fs = new FileInputStream(file);        } catch (FileNotFoundException e) {          e.printStackTrace();        }        if (null != fs) {          try {            BitmapFactory.Options opts = new BitmapFactory.Options();            opts.inJustDecodeBounds = true;            BitmapFactory.decodeFileDescriptor(fs.getFD(), null, opts);            opts.inDither = false;            opts.inPurgeable = true;            opts.inInputShareable = true;            opts.inTempStorage = new byte[32 * 1024];            opts.inSampleSize = BitmapUtils.calculateInSampleSize(opts,                UtilUnitConversion.dip2px(MyApplication.mContext, width), UtilUnitConversion.dip2px(MyApplication.mContext, height));            opts.inJustDecodeBounds = false;            bitmap = BitmapFactory.decodeFileDescriptor(fs.getFD(),                null, opts);          } catch (IOException e) {            e.printStackTrace();          } finally {            if (null != fs) {              try {                fs.close();              } catch (IOException e) {                e.printStackTrace();              }            }          }        }      }    }    return bitmap;  }

根据显示的图片大小进行SampleSize的计算

public int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {    if (reqWidth == 0 || reqHeight == 0) {      return 1;    }    // Raw height and width of image    final int height = options.outHeight;    final int width = options.outWidth;    int inSampleSize = 1;    if (height > reqHeight || width > reqWidth) {      final int halfHeight = height / 2;      final int halfWidth = width / 2;      // Calculate the largest inSampleSize value that is a power of 2 and      // keeps both height and width larger than the requested height and width.      while ((halfHeight / inSampleSize) >= reqHeight && (halfWidth / inSampleSize) >= reqWidth) {        inSampleSize *= 2;      }    }    return inSampleSize;  }

调用方式:

复制代码 代码如下:


mImageView.setImageBitmap(decodeSampledBitmapFromResource(getResources(), R.id.myImage, 100, 100))

Bitmap bitmap = decodeSampledBitmapFromUri(cropFileUri);
UtilBitmap.setImageBitmap(mContext, mImage,        UtilBitmap.getloadlBitmap(url, 100, 100),        R.drawable.ic_login_head, true);

2. 质量压缩:指定图片缩小到xkb以下

  // 压缩到100kb以下  int maxSize = 100 * 1024;  public static Bitmap getBitmapByte(Bitmap oriBitmap, int maxSize) {    ByteArrayOutputStream out = new ByteArrayOutputStream();    oriBitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);    byte[] fileBytes = out.toByteArray();    int be = (maxSize * 100) / fileBytes.length;    if (be > 100) {      be = 100;    }    out.reset();    oriBitmap.compress(Bitmap.CompressFormat.JPEG, be, out);    return oriBitmap;  }

3. 单纯获取图片宽高避免oom的办法

itmapFactory.Options这个类,有一个字段叫做 inJustDecodeBounds 。SDK中对这个成员的说明是这样的:
If set to true, the decoder will return null (no bitmap), but the out...

也就是说,如果我们把它设为true,那么BitmapFactory.decodeFile(String path, Options opt)并不会真的返回一个Bitmap给你,它仅仅会把它的宽,高取回来给你,这样就不会占用太多的内存,也就不会那么频繁的发生OOM了。

    public static BitmapFactory.Options decodeOptionsFromResource(Resources res, int resId) {    // First decode with inJustDecodeBounds=true to check dimensions    final BitmapFactory.Options options = new BitmapFactory.Options();    options.inJustDecodeBounds = true;    BitmapFactory.decodeResource(res, resId, options);    return options;  }

以上是“如何解决Android中图片处理避免出现oom的问题”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯