免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2007 | 回复: 0
打印 上一主题 下一主题

bitmap优化 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-08-18 12:23 |只看该作者 |倒序浏览
bitmap优化


直接使用ImageView显示bitmap会占用较多资源,特别是图片较大的时候,可能导致崩溃。

使用BitmapFactory.Options设置inSampleSize, 这样做可以减少对系统资源的要求。

属性值inSampleSize表示缩略图大小为原始图片大小的几分之一,即如果这个值为2,则取出的缩略图的宽和高都是原始图片的1/2,图片大小就为原始大小的1/4。

Options中有个属性inJustDecodeBounds,SDK中是这么说的

If set to true, the decoder will return null (no bitmap), but the out... fields will still be set, allowing the caller to query the bitmap without having to allocate the memory for its pixels.

通过设置inJustDecodeBounds为true,获取到outHeight(图片原始高度)和outWidth(图片的原始宽度),然后计算一个inSampleSize(缩放值)




main.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"androidrientation="vertical"android:layout_width="fill_parent"android:layout_height="fill_parent"><TextViewandroid:layout_width="fill_parent"android:layout_height="wrap_content"android:text="@string/hello"/><ImageViewandroid:id="@+id/imageview"android:layout_gravity="center"android:layout_width="fill_parent"android:layout_height="fill_parent"android:scaleType="center"/></LinearLayout>java源码

import android.app.Activity;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.os.Bundle;import android.widget.ImageView;import android.widget.Toast; public class AndroidImage extends Activity { private String imageFile = "/sdcard/AndroidSharedPreferencesEditor.png";/** Called when the activity is first created. */ @Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);   ImageView myImageView = (ImageView)findViewById(R.id.imageview);//Bitmap bitmap = BitmapFactory.decodeFile(imageFile);//myImageView.setImageBitmap(bitmap); Bitmap bitmap;float imagew = 300;float imageh = 300; BitmapFactory.Options bitmapFactoryOptions = new BitmapFactory.Options();bitmapFactoryOptions.inJustDecodeBounds = true;bitmap = BitmapFactory.decodeFile(imageFile, bitmapFactoryOptions); int yRatio = (int)Math.ceil(bitmapFactoryOptions.outHeight/imageh);int xRatio = (int)Math.ceil(bitmapFactoryOptions.outWidth/imagew); if (yRatio > 1 || xRatio > 1){ if (yRatio > xRatio) {  bitmapFactoryOptions.inSampleSize = yRatio;  Toast.makeText(this,    "yRatio = " + String.valueOf(yRatio),    Toast.LENGTH_LONG).show(); } else {  bitmapFactoryOptions.inSampleSize = xRatio;  Toast.makeText(this,    "xRatio = " + String.valueOf(xRatio),    Toast.LENGTH_LONG).show(); }}else{ Toast.makeText(this,   "inSampleSize = 1",   Toast.LENGTH_LONG).show();} bitmapFactoryOptions.inJustDecodeBounds = false;bitmap = BitmapFactory.decodeFile(imageFile, bitmapFactoryOptions);myImageView.setImageBitmap(bitmap);} }
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP