Drawable → Bitmap

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;  
}

从资源中获取Bitmap

Resources res=getResources();  
Bitmap bmp=BitmapFactory.decodeResource(res, R.drawable.pic);  

Bitmap → byte[]

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

byte[] → Bitmap

private Bitmap bytesToBimap(byte[] b)
{  
   if(b.length!=0)
   {  
       return BitmapFactory.decodeByteArray(b, 0, b.length);  
   }  
   else 
   {  
       return null;  
   }  
} 

相关文章:

  • 2021-05-28
  • 2022-01-19
  • 2021-12-10
  • 2022-01-09
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-01
  • 2022-01-20
  • 2021-06-06
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案