android byte[]陣列,bitmap,drawable之間的相互轉換

鴨脖發表於2012-08-28
Byte[]轉Bitmap
  1. BitmapFactory.decodeByteArray(data, 0, data.length);
複製程式碼
Bitmap轉Byte[]
  1. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  2. bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
  3. data2 = baos.toByteArray();
複製程式碼
2、Bitmap轉Drawable
  1. Bitmap bm=xxx; //xxx根據你情況獲取
  2. BitmapDrawable bd=BitmapDrawable(bm);
複製程式碼
BtimapDrawableDrawable的子類

3、 Drawable轉Bitmap
  1. Drawable d=xxx; //xxx根據自己的情況獲取drawable
  2. BitmapDrawable bd = (BitmapDrawable) d;
  3. Bitmap bm = bd.getBitmap();
複製程式碼

相關文章