当前位置: 代码迷 >> Android >> android Drawable转Bit地图| Bit地图转byte[]
  详细解决方案

android Drawable转Bit地图| Bit地图转byte[]

热度:43   发布时间:2016-04-28 03:20:41.0
android Drawable转Bitmap| Bitmap转byte[]

//

private byte[] Bitmap2Bytes(Bitmap bm)
 {
  ByteArrayOutputStream baos = new ByteArrayOutputStream();
  bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
  return baos.toByteArray();
 }


//

 public static Bitmap drawableToBitmap(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);
  drawable.setBounds(0, 0, drawable.getIntrinsicWidth(),
    drawable.getIntrinsicHeight());
  drawable.draw(canvas);
  return bitmap;
 }

  相关解决方案