Android Drawable、Bitmap、byte[]之间的转换
2010-06-19 18:26:00 来源:WEB开发网核心提示:bm.compress(Bitmap.CompressFormat.PNG, 100, baos);return baos.toByteArray();}4、 byte[] → BitmapJava代码private Bitmap Bytes2Bimap(byte[] b){if(b.length!=0){return
bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
return baos.toByteArray();
}
4、 byte[] → Bitmap
Java代码
private Bitmap Bytes2Bimap(byte[] b){
if(b.length!=0){
return BitmapFactory.decodeByteArray(b, 0, b.length);
}
else {
return null;
}
}
private Bitmap Bytes2Bimap(byte[] b){
if(b.length!=0){
return BitmapFactory.decodeByteArray(b, 0, b.length);
}
else {
return null;
}
}
以上是我在实践中遇到的一些转换,以后遇到类似的就不用到处找了,希望对大家也有一点用处!
更多精彩
赞助商链接