您的位置:首页 > 移动开发 > Android开发

Android获取图片大小以及获取指定大小的缩略图

2012-08-16 10:43 405 查看
http://www.lephone.net/thread-1191-1-1.html

首先我们来介绍一下BitmapFactory.Options这个类,它是实现我们目标的关键。

下面先看看它都有哪些成员

[align=left]Fields[/align]
[align=right]public Bitmap[/align]
[align=left]inBitmap[/align]
[align=left]If set, decode methods that take the Options object will attempt to reuse this bitmap when loading content.[/align]
[align=right]public int[/align]
[align=left]inDensity[/align]
[align=left]The pixel density to use for the bitmap.[/align]
[align=right]public boolean[/align]
[align=left]inDither[/align]
[align=left]If dither is true, the decoder will attempt to dither the decoded image.[/align]
[align=right]public boolean[/align]
[align=left]inInputShareable[/align]
[align=left]This field works in conjuction with inPurgeable.[/align]
[align=right]public boolean[/align]
[align=left]inJustDecodeBounds[/align]
[align=left]If set to true, the decoder will return null (no bitmap), but the out...[/align]
[align=right]public boolean[/align]
[align=left]inMutable[/align]
[align=left]If set, decode methods will always return a mutable Bitmap instead of an immutable one.[/align]
[align=right]public boolean[/align]
[align=left]inPreferQualityOverSpeed[/align]
[align=left]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.[/align]
[align=right]public Bitmap.Config[/align]
[align=left]inPreferredConfig[/align]
[align=left]If this is non-null, the decoder will try to decode into this internal configuration.[/align]
[align=right]public boolean[/align]
[align=left]inPurgeable[/align]
[align=left]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.[/align]
[align=right]public int[/align]
[align=left]inSampleSize[/align]
[align=left]If set to a value > 1, requests the decoder to subsample the original image, returning a smaller image to save memory.[/align]
[align=right]public boolean[/align]
[align=left]inScaled[/align]
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.
[align=right]public int[/align]
[align=left]inScreenDensity[/align]
[align=left]The pixel density of the actual screen that is being used.[/align]
[align=right]public int[/align]
[align=left]inTargetDensity[/align]
[align=left]The pixel density of the destination this bitmap will be drawn to.[/align]
[align=right]public byte[][/align]
[align=left]inTempStorage[/align]
[align=left]Temp storage to use for decoding.[/align]
[align=right]public boolean[/align]
[align=left]mCancel[/align]
[align=left]Flag to indicate that cancel has been called on this object.[/align]
[align=right]public int[/align]
[align=left]outHeight[/align]
[align=left]The resulting height of the bitmap, set independent of the state of inJustDecodeBounds.[/align]
[align=right]public String[/align]
[align=left]outMimeType[/align]
[align=left]If known, this string is set to the mimetype of the decoded image.[/align]
[align=right]public int[/align]
[align=left]outWidth[/align]
[align=left]The resulting width of the bitmap, set independent of the state of inJustDecodeBounds.[/align]
这个表格是从android sdk文档里摘出来的,简单看一下说明就明白是什么意思了。

下面我们回到我们的主题上来:怎样获取图片的大小?

思路很简单:

首先我们把这个图片转成Bitmap,然后再利用Bitmap的getWidth()和getHeight()方法就可以取到图片的宽高了。

新问题又来了,在通过BitmapFactory.decodeFile(String path)方法将突破转成Bitmap时,遇到大一些的图片,我们经常会遇到OOM(Out Of Memory)的问题。怎么避免它呢?

这就用到了我们上面提到的BitmapFactory.Options这个类。3 K3 n+ l( ^" q' G$ ^$ ^" _# U4 q
4 z; a; n% J7 r2 l, f# O

BitmapFactory.Options这个类,有一个字段叫做 inJustDecodeBounds 。SDK中对这个成员的说明是这样的:
If set to true, the decoder will return null (no bitmap), but the out...( F0 k6 G5 }' y. ~7 y6 V

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

示例代码如下:) l( z1 C; P8 q' [; ?- Q% Y

BitmapFactory.Options options = new BitmapFactory.Options();1 f1 e! W' B( d* s- w& F

options.inJustDecodeBounds = true;5 ~; }! O+ p* r5 U. V) T

Bitmap bmp = BitmapFactory.decodeFile(path, options);5 u0 ^5 s7 p, A: o$ \9 k* @

/* 这里返回的bmp是null */

复制代码
这段代码之后,options.outWidth 和 options.outHeight就是我们想要的宽和高了。% K9 c" D* K. d; T, c. U0 |; u5 b" F
+ {) I' f. M: r7 M+ {9 ~

有了宽,高的信息,我们怎样在图片不变形的情况下获取到图片指定大小的缩略图呢?

比如我们需要在图片不变形的前提下得到宽度为200的缩略图。

那么我们需要先计算一下缩放之后,图片的高度是多少5 g7 N; c- T/ J2 q( A3 H

/* 计算得到图片的高度 */, i3 \3 R2 D7 {& O$ z

/* 这里需要主意,如果你需要更高的精度来保证图片不变形的话,需要自己进行一下数学运算 */! J( \0 d, @, ?. T4 t

int height = options.outHeight * 200 / options.outWidth;

* h3 G) P8 w0 r) t" f/ J. H. ^

options.outWidth = 200;

options.outHeight = height;

/* 这样才能真正的返回一个Bitmap给你 */

options.inJustDecodeBounds = false;

Bitmap bmp = BitmapFactory.decodeFile(path, options);

image.setImageBitmap(bmp);

复制代码
这样虽然我们可以得到我们期望大小的ImageView: N6 _7 O! o6 T/ O

但是在执行BitmapFactory.decodeFile(path, options);时,并没有节约内存。要想节约内存,还需要用到BitmapFactory.Options这个类里的
inSampleSize
这个成员变量。# i/ p9 o7 ]- P6 ]  |7 h% o& J
我们可以根据图片实际的宽高和我们期望的宽高来计算得到这个值。" {2 a2 S0 ^) M1 n) Z

inSampleSize = options.outWidth / 200;

复制代码
另外,为了节约内存我们还可以使用下面的几个字段:" T5 Z; f5 }- m- x& X, n& A/ e

options.inPreferredConfig = Bitmap.Config.ARGB_4444;    // 默认是Bitmap.Config.ARGB_8888

0 F: g7 w5 B6 c

/* 下面两个字段需要组合使用 */- u& K, Z! V, G' A2 W; U8 D

options.inPurgeable = true;

options.inInputShareable = true;

复制代码
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息