- 浏览: 133133 次
- 性别:
- 来自: 广州
-
文章分类
最新评论
-
newhxj:
03-21 10:56:35.850: E/Web Conso ...
Android简易Flash播放器[转] -
roiz:
谢谢 很好正需要这资料
精确监听AbsListView滚动至底部[转]
public Bitmap |
inBitmap |
If set, decode methods that take the Options object will attempt to reuse this bitmap when loading content. |
public int |
inDensity |
The pixel density to use for the bitmap. |
public boolean |
inDither |
If dither is true, the decoder will attempt to dither the decoded image. |
public boolean |
inInputShareable |
This field works in conjuction with inPurgeable. |
public boolean |
inJustDecodeBounds |
If set to true, the decoder will return null (no bitmap), but the out… |
public boolean |
inMutable |
If set, decode methods will always return a mutable Bitmap instead of an immutable one. |
public boolean |
inPreferQualityOverSpeed |
If inPreferQualityOverSpeed is set to true, the decoder will try to decode the reconstructed image to a higher quality even at the expense of the decoding speed. |
publicBitmap.Config |
inPreferredConfig |
If this is non-null, the decoder will try to decode into this internal configuration. |
public boolean |
inPurgeable |
If this is set to true, then the resulting bitmap will allocate its pixels such that they can be purged if the system needs to reclaim memory. |
public int |
inSampleSize |
If set to a value > 1, requests the decoder to subsample the original image, returning a smaller image to save memory. |
public boolean |
inScaled |
When this flag is set, if inDensity and inTargetDensity are not 0, the bitmap will be scaled to match inTargetDensity when loaded, rather than relying on the graphics system scaling it each time it is drawn to a Canvas. |
public int |
inScreenDensity |
The pixel density of the actual screen that is being used. |
public int |
inTargetDensity |
The pixel density of the destination this bitmap will be drawn to. |
public byte[] |
inTempStorage |
Temp storage to use for decoding. |
public boolean |
mCancel |
Flag to indicate that cancel has been called on this object. |
public int |
outHeight |
The resulting height of the bitmap, set independent of the state of inJustDecodeBounds. |
public String |
outMimeType |
If known, this string is set to the mimetype of the decoded image. |
public int |
outWidth |
The resulting width of the bitmap, set independent of the state of inJustDecodeBounds.
|
这个表格是从android sdk文档里摘出来的,简单看一下说明就明白是什么意思了。
下面我们回到我们的主题上来:怎样获取图片的大小?
思路很简单:
首先我们把这个图片转成Bitmap,然后再利用Bitmap的getWidth()和getHeight()方法就可以取到图片的宽高了。
新问题又来了,在通过BitmapFactory.decodeFile(String path)方法将突破转成Bitmap时,遇到大一些的图片,我们经常会遇到OOM(Out Of Memory)的问题。怎么避免它呢?
这就用到了我们上面提到的BitmapFactory.Options这个类。
BitmapFactory.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了。
示例代码如下:
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
Bitmap bmp = BitmapFactory.decodeFile(path, options);
/* 这里返回的bmp是null */
这段代码之后,options.outWidth 和 options.outHeight就是我们想要的宽和高了。
有了宽,高的信息,我们怎样在图片不变形的情况下获取到图片指定大小的缩略图呢?
比如我们需要在图片不变形的前提下得到宽度为200的缩略图。
那么我们需要先计算一下缩放之后,图片的高度是多少
/* 计算得到图片的高度 */
/* 这里需要主意,如果你需要更高的精度来保证图片不变形的话,需要自己进行一下数学运算 */
int height = options.outHeight * 200 / options.outWidth;
options.outWidth = 200;
options.outHeight = height;
/* 这样才能真正的返回一个Bitmap给你 */
options.inJustDecodeBounds = false;
Bitmap bmp = BitmapFactory.decodeFile(path, options);
image.setImageBitmap(bmp);
复制代码
这样虽然我们可以得到我们期望大小的ImageView
但是在执行BitmapFactory.decodeFile(path, options);时,并没有节约内存。要想节约内存,还需要用到BitmapFactory.Options这个类里的 inSampleSize 这个成员变量。
我们可以根据图片实际的宽高和我们期望的宽高来计算得到这个值。
inSampleSize = options.outWidth / 200;
另外,为了节约内存我们还可以使用下面的几个字段:
options.inPreferredConfig = Bitmap.Config.ARGB_4444; // 默认是Bitmap.Config.ARGB_8888
/* 下面两个字段需要组合使用 */
options.inPurgeable = true;
options.inInputShareable = true;
转至:http://www.alnton.com/?p=196
发表评论
-
android Theme使用总结
2012-12-12 19:22 1489今天对api中style下的theme整个摸了一遍。 ... -
android优化——adapter
2012-12-12 18:56 1503什么是Adapter,可以先看看我的上一篇文章,Andr ... -
listview样式设置——自定义背景、分隔[转]
2012-12-12 14:13 821在Android中,ListView是最常用的一个控件, ... -
draw9patch不失真背景
2012-12-12 00:23 13231.背景自适应且不失真问题的存在 制作自适应背 ... -
android布局之selector(背景选择器)[转]
2012-12-11 23:07 2851关于listview和button都 ... -
android布局之RelativeLayout属性
2012-12-11 23:06 1233android:layout_above ... -
Android ListView下拉刷新点击加载更多[转]
2012-12-03 09:04 1706这个ListView的下拉刷新算是不错了。网上找了很多个 ... -
Android简易Flash播放器[转]
2012-01-20 21:16 1942上一节,大体说了下在Android程序中嵌套Flash动 ... -
将flash嵌入你的程序中[转]
2012-01-20 21:12 1222无论如何,我们需要一个android2.2的平板电脑 ... -
Android实现ListView异步加载图片[转]
2011-11-30 11:17 728ListView异步加载图片是非常实用的方法,凡是是要通过网络 ... -
精确监听AbsListView滚动至底部[转]
2011-11-10 09:00 1444用户使用android客户端时,当Lis ... -
可动态布局的Android抽屉之完整篇[转]
2011-11-10 09:00 1108上次介绍了基础篇,讲解了自定义抽屉控件的基 ... -
可动态布局的Android抽屉之基础[转]
2011-11-10 08:59 1588以前曾经介绍过《Android提高第十九篇 ... -
Android提高第二十一篇之MediaPlayer播放网络视频
2011-11-10 08:59 2639上次讲解了MediaPlayer播放网络音 ... -
Android提高第二十篇之MediaPlayer播放网络音频[转]
2011-11-10 08:58 789以前曾经地介绍过MediaPlayer的基本用 ... -
Android提高第十九篇之"多方向"抽屉[转]
2011-11-09 13:35 1203在android上要实现类似Launch的 ... -
Android提高十八篇之自定义Menu(TabMenu)[转]
2011-11-09 13:35 900用过UCWEB-Android版的人都应 ... -
Android提高十七篇之多级树形菜单的实现[转]
2011-11-09 13:35 896在Android里要实现树形菜单,都是用 ... -
Android提高十六篇之使用NDK把彩图转换灰度图[转]
2011-11-09 13:34 1058在Android上使 ... -
Android提高第十五篇之ListView自适应实现表格[转]
2011-11-09 13:34 873上次介绍了使用GridView实现表格, ...
相关推荐
BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeFile(path, options); int height = options.outHeight * 200 / options.outWidth; ...
BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; ``` 2. **预获取图片尺寸**:利用`BitmapFactory.decodeFile()`或`BitmapFactory.decodeStream()`等方法,...
BitmapFactory.Options newOpts = new BitmapFactory.Options(); newOpts.inJustDecodeBounds = true; // 先获取图片尺寸,不加载到内存 Bitmap bitmap = BitmapFactory.decodeFile(srcPath, newOpts); newOpts....
1. **初始化`BitmapFactory.Options`**:首先,创建一个`BitmapFactory.Options`实例,并将`inJustDecodeBounds`设置为`true`。 2. **解码图片尺寸**:使用`BitmapFactory.decodeFile()`方法加载图片,但由于`...
BitmapFactory.Options newOpts = new BitmapFactory.Options(); newOpts.inJustDecodeBounds = true; Bitmap bitmap = BitmapFactory.decodeFile(srcPath, newOpts); newOpts.inJustDecodeBounds = false; ...
BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeFile(path, options); // 计算缩放比例 options.inSampleSize = ...
BitmapFactory.Options newOpts = new BitmapFactory.Options(); newOpts.inJustDecodeBounds = true; Bitmap bitmap = BitmapFactory.decodeFile(srcPath, newOpts); newOpts.inJustDecodeBounds = false; ...
BitmapFactory.Options bitmapOptions = new BitmapFactory.Options(); bitmapOptions.inSampleSize = be; input = ac.getContentResolver().openInputStream(uri); Bitmap bitmap = BitmapFactory.decodeStream...
BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeResource(getResources(), R.drawable.my_image, options); int height = options....
BitmapFactory.Options option = new BitmapFactory.Options(); option.inSampleSize = 2; // 图片缩小为原图的1/2 Bitmap bm = BitmapFactory.decodeFile("", option); ``` 该示例说明了如何通过设置`inSampleSize...
BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeResource(res, resId, options); // 计算inSampleSize options.inSampleSize = ...
因此,开发者需要使用适当的选项来调整图像大小,如BitmapFactory.Options的inSampleSize参数,它可以控制图像解码时的缩小比例,降低内存占用。 在Android UI上显示BMP图像,通常会用到ImageView组件。通过设置...
BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 8; Bitmap bitmap = BitmapFactory.decodeStream(is, null, options); // 将图片数据发送到主线程进行显示 Message msg...
BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 2; mSrcBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.test, options); } 3. 放缩法压缩 放缩法...
BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeResource(res, resId, options); int bitmapWidth = options.outWidth; int ...
1.获取本地图片File文件 获取BitmapFactory.Options对象 计算原始图片 目标图片宽高比 计算输出的图片宽高 2.根据宽高比计算options.inSampleSize值(缩放比例 If set to a value > 1, requests the decoder to ...
### 面试Android性能优化知识点详解 #### 图片的三级缓存机制及处理方法 在Android应用开发中,为了提高用户体验,减少网络流量消耗,通常会采用图片缓存技术。图片缓存主要包括三级缓存:内存缓存、软引用缓存...