Android Bitmap和Drawable的对比

作者:灿岩 时间:2021-11-16 06:03:41 

Android Bitmap和Drawable的对比

Bitmap - 称作位图,一般位图的文件格式后缀为bmp,当然编码器也有很多如RGB565、RGB888。作为一种逐像素的显示对象执行效率高,但是缺点也很明显存储效率低。我们理解为一种存储对象比较好。

    Drawable - 作为Android平下通用的图形对象,它可以装载常用格式的图像,比如GIF、PNG、JPG,当然也支持BMP,当然还提供一些高级的可视化对象,比如渐变、图形等。

A bitmap is a Drawable. A Drawable is not necessarily a bitmap. Like all thumbs are fingers but not all fingers are thumbs.
Bitmap是Drawable . Drawable不一定是Bitmap .就像拇指是指头,但不是所有的指头都是拇指一样.

The API dictates: API规定:


Though usually not visible to the application, Drawables may take a variety of forms: 尽管通常情况下对于应用是不可见的,Drawables 可以采取很多形式:

Bitmap: the simplest Drawable, a PNG or JPEG image. Bitmap: 简单化的Drawable, PNG 或JPEG图像.
Nine Patch: an extension to the PNG format allows it to specify information about how to stretch it and place things inside of it.
Shape: contains simple drawing commands instead of a raw bitmap, allowing it to resize better in some cases.
Layers: a compound drawable, which draws multiple underlying drawables on top of each other.
States: a compound drawable that selects one of a set of drawables based on its state.
Levels: a compound drawable that selects one of a set of drawables based on its level.
Scale: a compound drawable with a single child drawable, whose overall size is modified based on the current level.

对比项显示清晰度支持透明色支持色相色差调整支持像素操作
Bitmap相同
Drawable相同

Drawable在内存占用和绘制速度这两个非常关键的点上胜过Bitmap

- Drawable和Bitmap之间可以互相转换,Drawable占用内存远小于Bitmap。

- setImageDrawable使用资源文件;setImageBitmap使用bitmap图片,该图片可能是读取本地相册,或者从资源文件转换而来。

- setImageResource()和setImageBitmap()


//setImageResource()
public void setImageResource (int resId)//占用UI thread;
// setImageBitmap()
ImageView iv;
String fileName = "/data/data/com.test/aa.png";
Bitmap bm = BitmapFactory.decodeFile(fileName);
iv.setImageBitmap(bm); //占用内存
// setImageBitmap()
Bitmap image = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
imageView.setImageBitmap(image);
// Bitmap转换成Drawable
Bitmap image = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
BitmapDrawable bitmapDrawable = new BitmapDrawable(image);
imageView.setImageDrawable(bitmapDrawable);
// 结论:Bitmap是Drawable . Drawable不一定是Bitmap

小结

Bitmap: 简单化的Drawable, PNG 或JPEG图像. 

Drawable在内存占用和绘制速度这两个非常关键的点上胜过Bitmap

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

来源:http://blog.csdn.net/zhangcanyan/article/details/72811985

标签:Android,Bitmap,Drawable
0
投稿

猜你喜欢

  • springmvc拦截器登录验证示例

    2022-11-28 12:15:24
  • Android虚拟机与类加载机制详情

    2022-12-16 20:09:03
  • Unity实现鼠标或者手指点击模型播放动画

    2023-11-30 23:06:01
  • Android中实现地址栏输入网址能浏览该地址网页源码并操作访问网络

    2022-08-21 16:11:42
  • SpringBoot配置拦 截器实现过程详解

    2023-11-24 17:14:58
  • spring mvc url匹配禁用后缀访问操作

    2021-11-19 23:57:34
  • 详解mybatis-plus配置找不到Mapper接口路径的坑

    2022-03-12 10:37:45
  • java文字转语音播报功能的实现方法

    2022-05-08 18:44:41
  • VC++时钟函数

    2021-06-17 10:07:51
  • JAVA读取文件夹大小的几种方法实例

    2021-05-24 21:01:53
  • Java 实现微信和支付宝支付功能

    2023-03-08 23:18:04
  • 七个Spring核心模块详解

    2021-07-25 15:32:18
  • SpringBoot MongoDB 索引冲突分析及解决方法

    2023-01-23 06:28:05
  • Java线程的调度与优先级详解

    2023-04-30 13:48:13
  • C#实现拼手气红包算法

    2023-07-27 13:52:18
  • Android 通过SQLite数据库实现数据存储管理

    2023-09-28 11:31:59
  • struts+spring+hibernate三个框架的整合

    2022-08-08 08:13:15
  • Android中的SpannableString与SpannableStringBuilder详解

    2022-03-02 22:04:55
  • Android提高之SurfaceView与多线程的混搭实例

    2023-08-31 12:46:39
  • 详解Android Flutter中SliverAppBar的使用教程

    2023-06-23 12:11:27
  • asp之家 软件编程 m.aspxhome.com