博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android中Bitmap、Drawable、byte[]互换
阅读量:5825 次
发布时间:2019-06-18

本文共 1193 字,大约阅读时间需要 3 分钟。

1.Drawable—>Bitmap
查看源代码打印帮助
Resources res=getResources();
Bitmap bmp=BitmapFactory.decodeResource(res, R.drawable.sample_0);
2.Bitmap---->Drawable
Drawable drawable =new BitmapDrawable(bmp);
另外在网上搜了一些其它的方法,在这里分享下
1、Drawable → Bitmap
public static Bitmap drawableToBitmap(Drawable drawable)
{
    Config config;
    if (drawable.getOpacity() != PixelFormat.OPAQUE)
    {
        config = Bitmap.Config.ARGB_8888;
    }
    else
    {
        config = Bitmap.Config.RGB_565;
    }
    Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(),
                    rawable.getIntrinsicHeight(),config);
    Canvas canvas = new Canvas(bitmap);
    // canvas.setBitmap(bitmap);
    drawable.setBounds(0, 0, drawable.getIntrinsicWidth(),
                             drawable.getIntrinsicHeight());
    drawable.draw(canvas);
    return bitmap;
}
2、从资源中获取Bitmap
Resources res=getResources();
Bitmap bmp=BitmapFactory.decodeResource(res, R.drawable.pic);
3、Bitmap → byte[]
private byte[] Bitmap2Bytes(Bitmap bm)
{
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
    return baos.toByteArray();
}
4、byte[] → Bitmap
private Bitmap Bytes2Bimap(byte[] b)
{
    if (b.length != 0)
    {
        return BitmapFactory.decodeByteArray(b, 0, b.length);
    } else
    {
        return null;
    }
}

转载地址:http://qusdx.baihongyu.com/

你可能感兴趣的文章
HDU 2044 一只小蜜蜂(递归)
查看>>
docker 下 安装rancher 笔记
查看>>
spring两大核心对象IOC和AOP(新手理解)
查看>>
数据分析相关
查看>>
Python LDAP中的时间戳转换为Linux下时间
查看>>
微信小程序蓝牙连接小票打印机
查看>>
环境错误2
查看>>
C++_了解虚函数的概念
查看>>
全新jmeter视频已经上架
查看>>
Windows 8下如何删除无线配置文件
查看>>
解决Windows 7中文件关联和打开方式
查看>>
oracle系列(五)高级DBA必知的Oracle的备份与恢复(全录收集)
查看>>
hp 服务器通过串口重定向功能的使用
查看>>
国外10大IT网站和博客网站
查看>>
android第十一期 - SmoothSwitchLibrary仿IOS切换Activity动画效果
查看>>
zabbix 批量web url监控
查看>>
MongoDB CookBook读书笔记之导入导出
查看>>
shell如何快速锁定所有账号
查看>>
HTML 5实现的手机摇一摇
查看>>
Linux 文件IO理解
查看>>