热门标签 | HotTags
当前位置:  开发笔记 > Android > 正文

Android图片压缩几种方式总结

这篇文章主要介绍了Android图片压缩几种方式总结的相关资料,需要的朋友可以参考下

Android图片压缩几种方式总结

图片压缩在Android开发中很常见也很重要,防止图片的OOM也是压缩的重要原因。

首先看下Bitmap图片文件的大小的决定因素:

Bitmap所占用的内存 = 图片长度 x 图片宽度 x 一个像素点占用的字节数。3个参数,任意减少一个的值,就达到了压缩的效果。

接下来看下Bitmap图片的几种格式的特点:

ALPHA_8
 表示8位Alpha位图,即A=8,一个像素点占用1个字节,它没有颜色,只有透明度
 ARGB_4444
表示16位ARGB位图,即A=4,R=4,G=4,B=4,一个像素点占4+4+4+4=16位,2个字节
ARGB_8888
表示32位ARGB位图,即A=8,R=8,G=8,B=8,一个像素点占8+8+8+8=32位,4个字节
RGB_565
表示16位RGB位图,即R=5,G=6,B=5,它没有透明度,一个像素点占5+6+5=16位,2个字节

如果进行图片格式的压缩的话,一般情况下都是ARGB_8888转为RGB565进行压缩。

写了一个工具类,基本上列举了android上图片的几种基本压缩方式:

1.质量压缩

2.采样率压缩

3.尺寸压缩

4.Matrix压缩

5.图片格式的压缩,例如PNG和JPG保存后的图片大小是不同的

public class Utils { 
 
  /** 
   * 采样率压缩 
   * 
   * @param bitmap 
   * @param sampleSize 采样率为2的整数倍,非整数倍四舍五入,如4的话,就是原图的1/4 
   * @return 尺寸变化 
   */ 
  public static Bitmap getBitmap(Bitmap bitmap, int sampleSize) { 
    BitmapFactory.Options optiOns= new BitmapFactory.Options(); 
    options.inSampleSize = sampleSize; 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos); 
    byte[] bytes = baos.toByteArray(); 
    Bitmap bit = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); 
    Log.i("info", "图片大小:" + bit.getByteCount());//2665296  10661184 
    return bit; 
  } 
 
  /** 
   * 图片质量压缩 
   * 
   * @param bitmap 
   * @param quality 
   * @return 尺寸不变,质量变小 
   */ 
  public static Bitmap compressByQuality(Bitmap bitmap, int quality) { 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    bitmap.compress(Bitmap.CompressFormat.JPEG, quality, baos); 
    byte[] bytes = baos.toByteArray(); 
    Bitmap bit = BitmapFactory.decodeByteArray(bytes, 0, bytes.length); 
    Log.i("info", "图片大小:" + bit.getByteCount());//10661184 
    return bit; 
  } 
 
  /** 
   * 图片质量压缩 
   * 
   * @param src 
   * @param maxByteSize 
   * @return 
   */ 
  public static Bitmap compressByQuality(Bitmap src, long maxByteSize) { 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    int quality = 100; 
    src.compress(Bitmap.CompressFormat.JPEG, quality, baos); 
    while (baos.toByteArray().length > maxByteSize && quality > 0) { 
      baos.reset(); 
      src.compress(Bitmap.CompressFormat.JPEG, quality -= 5, baos); 
    } 
    if (quality <0) return null; 
    byte[] bytes = baos.toByteArray(); 
    Bitmap bit = BitmapFactory.decodeByteArray(bytes, 0, bytes.length); 
    return bit; 
  } 
 
  public static Bitmap compressByFormat(Bitmap bitmap, int format) { 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos); 
    byte[] bytes = baos.toByteArray(); 
    Bitmap bit = BitmapFactory.decodeByteArray(bytes, 0, bytes.length); 
    Log.i("info", "图片大小:" + bit.getByteCount());//10661184 
    return bit; 
  } 
 
  /** 
   * Matrix缩放 
   * 
   * @param bitmap 
   * @param scaleWidth 
   * @param scaleHeight 
   * @return 尺寸和大小变化 
   */ 
  public static Bitmap getBitmapBySize(Bitmap bitmap, float scaleWidth, float scaleHeight) { 
    Matrix matrix = new Matrix(); 
    matrix.postScale(scaleWidth, scaleHeight); 
    Bitmap bit = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, false); 
    Log.i("info", "图片大小:" + bit.getByteCount()); 
    return bit; 
  } 
 
  /** 
   * 按照图片格式配置压缩 
   * 
   * @param path 
   * @param config ALPHA_8,ARGB_4444,ARGB_8888,RGB_565; 
   * @return RGB_565比ARGB_8888节省一半内存 
   */ 
  public static Bitmap getBitmapByFormatConfig(String path, Bitmap.Config config) { 
    BitmapFactory.Options optiOns= new BitmapFactory.Options(); 
    options.inPreferredCOnfig= config; 
    Bitmap bitmap = BitmapFactory.decodeFile(path, options); 
    Log.i("info", "图片大小:" + bitmap.getByteCount()); 
    return bitmap; 
  } 
 
  /** 
   * 指定大小缩放 
   * 
   * @param bitmap 
   * @param width 
   * @param height 
   * @return 
   */ 
  public static Bitmap getBitmapByScaleSize(Bitmap bitmap, int width, int height) { 
    Bitmap bit = Bitmap.createScaledBitmap(bitmap, width, height, true); 
    Log.i("info", "图片大小:" + bit.getByteCount()); 
    return bit; 
  } 
 
  /** 
   * 通过保存格式压缩 
   * 
   * @param bitmap 
   * @param format JPEG,PNG,WEBP 
   * @return 
   */ 
  public static Bitmap getBitmapByFormat(Bitmap bitmap, Bitmap.CompressFormat format) { 
    ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
    bitmap.compress(format, 100, baos); 
    byte[] bytes = baos.toByteArray(); 
    Bitmap bit = BitmapFactory.decodeByteArray(bytes, 0, bytes.length); 
    Log.i("info", "图片大小:" + bit.getByteCount()); 
    return bit; 
  } 
 
  /** 
   * 文件加载压缩 
   * 
   * @param filePath 
   * @param inSampleSize 
   * @return 
   */ 
  public static Bitmap getBitmap(String filePath, int inSampleSize) { 
    BitmapFactory.Options optiOns= new BitmapFactory.Options(); 
    options.inJustDecodeBounds = true; 
    BitmapFactory.decodeFile(filePath, options);//此时不耗费和占用内存 
    options.inSampleSize = inSampleSize; 
    options.inJustDecodeBounds = false; 
    return BitmapFactory.decodeFile(filePath, options); 
  } 
 
  public static Bitmap getBitmap(String filePath) { 
    return BitmapFactory.decodeFile(filePath); 
  } 
 
  public static Bitmap view2Bitmap(View view) { 
    if (view == null) return null; 
    Bitmap ret = Bitmap.createBitmap(view.getWidth(), view.getHeight(), Bitmap.Config.ARGB_8888); 
    Canvas canvas = new Canvas(ret); 
    Drawable bgDrawable = view.getBackground(); 
    if (bgDrawable != null) { 
      bgDrawable.draw(canvas); 
    } else { 
      canvas.drawColor(Color.WHITE); 
    } 
    view.draw(canvas); 
    return ret; 
  } 
 
  public static void saveBitmap(Bitmap bitmap) { 
    File file = new File(Environment.getExternalStorageDirectory() + "/img.jpg"); 
    try { 
      FileOutputStream fileOutputStream = new FileOutputStream(file); 
      bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fileOutputStream); 
      fileOutputStream.flush(); 
      fileOutputStream.close(); 
    } catch (FileNotFoundException e) { 
      e.printStackTrace(); 
    } catch (IOException e) { 
      e.printStackTrace(); 
    } 
  } 
 
  public static void saveBitmap(Bitmap bitmap,Bitmap.CompressFormat format) { 
    File file = new File(Environment.getExternalStorageDirectory() + "/img.jpg"); 
    try { 
      FileOutputStream fileOutputStream = new FileOutputStream(file); 
      bitmap.compress(format, 100, fileOutputStream); 
      fileOutputStream.flush(); 
      fileOutputStream.close(); 
    } catch (FileNotFoundException e) { 
      e.printStackTrace(); 
    } catch (IOException e) { 
      e.printStackTrace(); 
    } 
  } 
} 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


推荐阅读
  • 本文介绍如何在 Android 中通过代码模拟用户的点击和滑动操作,包括参数说明、事件生成及处理逻辑。详细解析了视图(View)对象、坐标偏移量以及不同类型的滑动方式。 ... [详细]
  • 深入理解OAuth认证机制
    本文介绍了OAuth认证协议的核心概念及其工作原理。OAuth是一种开放标准,旨在为第三方应用提供安全的用户资源访问授权,同时确保用户的账户信息(如用户名和密码)不会暴露给第三方。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • 本文将详细介绍如何使用剪映应用中的镜像功能,帮助用户轻松实现视频的镜像效果。通过简单的步骤,您可以快速掌握这一实用技巧。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 在Linux系统中配置并启动ActiveMQ
    本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]
  • Android 渐变圆环加载控件实现
    本文介绍了如何在 Android 中创建一个自定义的渐变圆环加载控件,该控件已在多个知名应用中使用。我们将详细探讨其工作原理和实现方法。 ... [详细]
  • 如何在WPS Office for Mac中调整Word文档的文字排列方向
    本文将详细介绍如何使用最新版WPS Office for Mac调整Word文档中的文字排列方向。通过这些步骤,用户可以轻松更改文本的水平或垂直排列方式,以满足不同的排版需求。 ... [详细]
  • 本文总结了在使用Ionic 5进行Android平台APK打包时遇到的问题,特别是针对QRScanner插件的改造。通过详细分析和提供具体的解决方法,帮助开发者顺利打包并优化应用性能。 ... [详细]
author-avatar
美君朝龙冰盛
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有