开发学院手机开发Android 开发 Android Drawable、Bitmap、byte[]之间的转换 阅读

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;

}

}

以上是我在实践中遇到的一些转换,以后遇到类似的就不用到处找了,希望对大家也有一点用处!

上一页  1 2 

Tags:Android Drawable Bitmap

编辑录入:coldstar [复制链接] [打 印]
[]
  • 好
  • 好的评价 如果觉得好,就请您
      0%(0)
  • 差
  • 差的评价 如果觉得差,就请您
      0%(0)
赞助商链接