assets bitmap 转_Drawable和Bitmap转换

Drawable和Bitmap转换

(2012-07-16 10:51:02)

标签:

it

一、Bitmap转Drawable

Bitmap bm=xxx; //xxx根据你的情况获取

BitmapDrawable bd=new BitmapDrawable(bm);

因为BtimapDrawable是Drawable的子类,最终直接使用bd对象即可。

二、 Drawable转Bitmap

转成Bitmap对象后,可以将Drawable对象通过Android的SK库存成一个字节输出流,最终还可以保存成为jpg和png的文件。

Drawable d=xxx; //xxx根据自己的情况获取drawable

BitmapDrawable bd = (BitmapDrawable) d;

Bitmap bm = bd.getBitmap();

最终bm就是我们需要的Bitmap对象了。

// 从资源中获取Bitmap

public static Bitmap getBitmapFromResources(Activity act, int

resId) {

Resources res = act.getResources();

return BitmapFactory.decodeResource(res, resId);

}

// byte[] → Bitmap

public static Bitmap convertBytes2Bimap(byte[] b) {

if (b.length == 0) {

return null;

}

return BitmapFactory.decodeByteArray(b, 0, b.length);

}

// Bitmap → byte[]

public static byte[] convertBitmap2Bytes(Bitmap bm) {

ByteArrayOutputStream baos = new ByteArrayOutputStream();

bm.compress(Bitmap.CompressFormat.PNG, 100, baos);

return baos.toByteArray();

}

// 1)Drawable → Bitmap

public static Bitmap convertDrawable2BitmapByCanvas(Drawable

drawable) {

Bitmap bitmap = Bitmap

.createBitmap(

drawable.getIntrinsicWidth(),

drawable.getIntrinsicHeight(),

drawable.getOpacity() != PixelFormat.OPAQUE ?

Bitmap.Config.ARGB_8888

: Bitmap.Config.RGB_565);

Canvas canvas = new Canvas(bitmap);

// canvas.setBitmap(bitmap);

drawable.setBounds(0, 0, drawable.getIntrinsicWidth(),

drawable.getIntrinsicHeight());

drawable.draw(canvas);

return bitmap;

}

// 2)Drawable → Bitmap

public static Bitmap convertDrawable2BitmapSimple(Drawable

drawable){

BitmapDrawable bd = (BitmapDrawable) drawable;

return bd.getBitmap();

}

// Bitmap → Drawable

public static Drawable convertBitmap2Drawable(Bitmap bitmap)

{

BitmapDrawable bd = new BitmapDrawable(bitmap);

// 因为BtimapDrawable是Drawable的子类,最终直接使用bd对象即可。

return bd;

}

分享:

喜欢

0

赠金笔

加载中,请稍候......

评论加载中,请稍候...

发评论

登录名: 密码: 找回密码 注册记住登录状态

昵   称:

评论并转载此博文

发评论

以上网友发言只代表其个人观点,不代表新浪网的观点或立场。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值