Android Drawable 과 Bitmap 의 변환 실례 상세 설명

1333 단어 AndroidDrawableBitmap
Android Drawable 과 Bitmap 의 변환 실례 상세 설명
보통 우 리 는 코드 를 통 해 그림 을 설정 해 야 한다.그림 Bitmap 와 Drawable 의 전환 을 설정 해 야 한다.다음은 몇 가지 방식 을 정리 했다.
1.Bitmap 전환 Drawable

Bitmap bm=xxx; //xxx        
BitmapDrawable bd=new BitmapDrawable(bm);//  BtimapDrawable Drawable   ,      bd    。
2.Drawable 회전 비트 맵

Drawable d=xxx; //xxx         drawable
BitmapDrawable bd = (BitmapDrawable) d;
Bitmap bm = bd.getBitmap();
//  bm       Bitmap   。
자원 에서 Bitmap 가 져 오기

public static Bitmap getBitmapFromResources(Activity act, int resId) {
Resources res = act.getResources();
return BitmapFactory.decodeResource(res, resId);
}
byte[] → Bitmap

public static Bitmap convertBytes2Bimap(byte[] b) {
if (b.length == 0) {
return null;
}
return BitmapFactory.decodeByteArray(b, 0, b.length);
}
// Bitmap → byte[]

public static byte[] convertBitmap2Bytes(Bitmap bm) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
return baos.toByteArray();
}
간단 한 코드 세 션 일 뿐 쉽게 알 수 있 습 니 다.
읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기