Android整理好的图片压缩工具类

所属分类: 软件编程 / Android 阅读数: 47
收藏 0 赞 0 分享

Android设备的内存有限,对于大图片,必须进行压缩后再进行显示,否则会出现内存溢出:OOM;

处理策略:

1.使用缩略图(Thumbnails);

Android系统会给检测到的图片创建缩略图;可以操作Media内容提供者中的Image对图片进行操作;

2.手动压缩:

  • (1)根据图片和屏幕尺寸,等比压缩,完美显示;
  • (2)降低图片质量,压缩图片大小;

以下是自己整理的小工具类(对于按比例缩放后,在此并未再进行质量缩放,此时图片大小有可能超出我们期望的限制;假如我们有严格的大小限制需求,可先进行按比例缩放后,判断此时图片大小是否超出限制;如果超出限制,对其再进行质量缩放即可。建议使用按比例缩放,按质量缩放很有可能导致图片失真。)

</pre><p><pre name="code" class="java">package com.util; 
import java.io.ByteArrayOutputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import android.graphics.Bitmap; 
import android.graphics.Matrix; 
import android.graphics.Bitmap.CompressFormat; 
import android.graphics.BitmapFactory; 
import android.media.ExifInterface; 
/** 
 * 图片压缩工具类 
 * @author 丶Life_ 
 */ 
public class ImageCompressUtil { 
  /** 
   * 通过降低图片的质量来压缩图片 
   * @param bmp 
   *      要压缩的图片位图对象 
   * @param maxSize 
   *      压缩后图片大小的最大值,单位KB 
   * @return 压缩后的图片位图对象 
   */ 
  public static Bitmap compressByQuality(Bitmap bitmap, int maxSize) { 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    int quality = 100; 
    bitmap.compress(CompressFormat.JPEG, quality, baos); 
    System.out.println("图片压缩前大小:" + baos.toByteArray().length + "byte"); 
    boolean isCompressed = false; 
    while (baos.toByteArray().length / 1024 > maxSize) { 
      quality -= 10; 
      baos.reset(); 
      bitmap.compress(CompressFormat.JPEG, quality, baos); 
      System.out.println("质量压缩到原来的" + quality + "%时大小为:" 
          + baos.toByteArray().length + "byte"); 
      isCompressed = true; 
    } 
    System.out.println("图片压缩后大小:" + baos.toByteArray().length + "byte"); 
    if (isCompressed) { 
      Bitmap compressedBitmap = BitmapFactory.decodeByteArray( 
          baos.toByteArray(), 0, baos.toByteArray().length); 
      recycleBitmap(bitmap); 
      return compressedBitmap; 
    } else { 
      return bitmap; 
    } 
  } 
  /** 
   * 传入图片url,通过压缩图片的尺寸来压缩图片大小
   * @param pathName 图片的完整路径 
   * @param targetWidth 缩放的目标宽度 
   * @param targetHeight 缩放的目标高度 
   * @return 缩放后的图片 
   */ 
  public static Bitmap compressBySize(String pathName, int targetWidth, 
      int targetHeight) { 
    BitmapFactory.Options opts = new BitmapFactory.Options(); 
    opts.inJustDecodeBounds = true;// 不去真的解析图片,只是获取图片的头部信息,包含宽高等; 
    Bitmap bitmap = BitmapFactory.decodeFile(pathName, opts); 
    // 得到图片的宽度、高度; 
    int imgWidth = opts.outWidth; 
    int imgHeight = opts.outHeight; 
    // 分别计算图片宽度、高度与目标宽度、高度的比例;取大于等于该比例的最小整数; 
    int widthRatio = (int) Math.ceil(imgWidth / (float) targetWidth); 
    int heightRatio = (int) Math.ceil(imgHeight / (float) targetHeight); 
    if (widthRatio > 1 || heightRatio > 1) { 
      if (widthRatio > heightRatio) { 
        opts.inSampleSize = widthRatio; 
      } else { 
        opts.inSampleSize = heightRatio; 
      } 
    } 
    // 设置好缩放比例后,加载图片进内容; 
    opts.inJustDecodeBounds = false; 
    bitmap = BitmapFactory.decodeFile(pathName, opts); 
    return bitmap; 
  } 
  /** 
   * 传入bitmap,通过压缩图片的尺寸来压缩图片大小  
   * @param bitmap 要压缩图片 
   * @param targetWidth 缩放的目标宽度 
   * @param targetHeight 缩放的目标高度 
   * @return 缩放后的图片 
   */ 
  public static Bitmap compressBySize(Bitmap bitmap, int targetWidth, 
      int targetHeight) { 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    bitmap.compress(CompressFormat.JPEG, 100, baos); 
    BitmapFactory.Options opts = new BitmapFactory.Options(); 
    opts.inJustDecodeBounds = true; 
    bitmap = BitmapFactory.decodeByteArray(baos.toByteArray(), 0, 
        baos.toByteArray().length, opts); 
    // 得到图片的宽度、高度; 
    int imgWidth = opts.outWidth; 
    int imgHeight = opts.outHeight; 
    // 分别计算图片宽度、高度与目标宽度、高度的比例;取大于该比例的最小整数; 
    int widthRatio = (int) Math.ceil(imgWidth / (float) targetWidth); 
    int heightRatio = (int) Math.ceil(imgHeight / (float) targetHeight); 
    if (widthRatio > 1 || heightRatio > 1) { 
      if (widthRatio > heightRatio) { 
        opts.inSampleSize = widthRatio; 
      } else { 
        opts.inSampleSize = heightRatio; 
      } 
    } 
    // 设置好缩放比例后,加载图片进内存; 
    opts.inJustDecodeBounds = false; 
    Bitmap compressedBitmap = BitmapFactory.decodeByteArray( 
        baos.toByteArray(), 0, baos.toByteArray().length, opts); 
    recycleBitmap(bitmap); 
    return compressedBitmap; 
  } 
  /** 
   * 通过压缩图片的尺寸来压缩图片大小,通过读入流的方式,可以有效防止网络图片数据流形成位图对象时内存过大的问题; 
   * @param InputStream 要压缩图片,以流的形式传入 
   * @param targetWidth 缩放的目标宽度 
   * @param targetHeight 缩放的目标高度 
   * @return 缩放后的图片 
   * @throws IOException 读输入流的时候发生异常 
   */ 
  public static Bitmap compressBySize(InputStream is, int targetWidth, 
      int targetHeight) throws IOException { 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    byte[] buff = new byte[1024]; 
    int len = 0; 
    while ((len = is.read(buff)) != -1) { 
      baos.write(buff, 0, len); 
    } 
    byte[] data = baos.toByteArray(); 
    BitmapFactory.Options opts = new BitmapFactory.Options(); 
    opts.inJustDecodeBounds = true; 
    Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length, 
        opts); 
    // 得到图片的宽度、高度; 
    int imgWidth = opts.outWidth; 
    int imgHeight = opts.outHeight; 
    // 分别计算图片宽度、高度与目标宽度、高度的比例;取大于该比例的最小整数; 
    int widthRatio = (int) Math.ceil(imgWidth / (float) targetWidth); 
    int heightRatio = (int) Math.ceil(imgHeight / (float) targetHeight); 
    if (widthRatio > 1 || heightRatio > 1) { 
      if (widthRatio > heightRatio) { 
        opts.inSampleSize = widthRatio; 
      } else { 
        opts.inSampleSize = heightRatio; 
      } 
    } 
    // 设置好缩放比例后,加载图片进内存; 
    opts.inJustDecodeBounds = false; 
    bitmap = BitmapFactory.decodeByteArray(data, 0, data.length, opts); 
    return bitmap; 
  } 
  /** 
   * 旋转图片摆正显示 
   * @param srcPath 
   * @param bitmap 
   * @return 
   */ 
  public static Bitmap rotateBitmapByExif(String srcPath, Bitmap bitmap) { 
    ExifInterface exif; 
    Bitmap newBitmap = null; 
    try { 
      exif = new ExifInterface(srcPath); 
      if (exif != null) { // 读取图片中相机方向信息 
        int ori = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, 
            ExifInterface.ORIENTATION_NORMAL); 
        int digree = 0; 
        switch (ori) { 
        case ExifInterface.ORIENTATION_ROTATE_90: 
          digree = 90; 
          break; 
        case ExifInterface.ORIENTATION_ROTATE_180: 
          digree = 180; 
          break; 
        case ExifInterface.ORIENTATION_ROTATE_270: 
          digree = 270; 
          break; 
        } 
        if (digree != 0) { 
          Matrix m = new Matrix(); 
          m.postRotate(digree); 
          newBitmap = Bitmap.createBitmap(bitmap, 0, 0, 
              bitmap.getWidth(), bitmap.getHeight(), m, true); 
          recycleBitmap(bitmap); 
          return newBitmap; 
        } 
      } 
    } catch (IOException e) { 
      e.printStackTrace(); 
    } 
    return bitmap; 
  } 
  /** 
   * 回收位图对象 
   * @param bitmap 
   */ 
  public static void recycleBitmap(Bitmap bitmap) { 
    if (bitmap != null && !bitmap.isRecycled()) { 
      bitmap.recycle(); 
      System.gc(); 
      bitmap = null; 
    } 
  } 
}

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接

更多精彩内容其他人还在看

使用ViewPager实现android软件使用向导功能实现步骤

现在的大部分android软件,都是使用说明,就是第一次使用该软件时,会出现向导,可以左右滑动,然后就进入应用的主界面了,下面我们就实现这个功能
收藏 0 赞 0 分享

android在异步任务中关闭Cursor的代码方法

android在异步任务中如何关闭Cursor?在我们开发应用的时候,很多时候会遇到这种问题,下面我们就看看代码如何实现
收藏 0 赞 0 分享

Android自定义桌面功能代码实现

android自定义桌面其实很简单,看一个例子就明白了
收藏 0 赞 0 分享

android将图片转换存到数据库再从数据库读取转换成图片实现代码

有时候我们想把图片存入到数据库中,尽管这不是一种明智的选择,但有时候还是不得以会用到,下面说说将图片转换成byte[]数组存入到数据库中去,并从数据库中取出来转换成图像显示出来
收藏 0 赞 0 分享

TextView显示系统时间(时钟功能带秒针变化

用System.currentTimeMillis()可以获取系统当前的时间,我们可以开启一个线程,然后通过handler发消息,来实时的更新TextView上显示的系统时间,可以做一个时钟的功能
收藏 0 赞 0 分享

Android用ListView显示SDCard文件列表的小例子

本文简单实现了用ListView显示SDCard文件列表,目录的回退等功能暂不讨论,获取文件列表,files即为所选择目录下的所有文件列表
收藏 0 赞 0 分享

Android拦截外拨电话程序示例

这篇文章主要介绍了Android拦截外拨电话的示例,大家参考使用吧
收藏 0 赞 0 分享

通过Html网页调用本地安卓(android)app程序代码

如何使用html网页和本地app进行传递数据呢?经过研究,发现还是有方法的,总结了一下,大致有一下几种方式
收藏 0 赞 0 分享

android Textview文字监控(Textview使用方法)

以手机号充值为例,当用户输入最后一位数时候,进行汇率的变换,本文就实现类似这样的功能
收藏 0 赞 0 分享

Android ListView长按弹出菜单二种实现方式示例

这篇文章主要介绍了Android ListView长按弹出菜单的方法,大家参考实现
收藏 0 赞 0 分享
查看更多