본문 바로가기
안드로이드

[안드로이드] byte[] -> bitmap, bitmap -> byte[] 변환

by 호군 2011. 8. 10.
반응형
원문 : http://s2smile.tistory.com/7


비트맵 -> 바이트배열

Bitmap bit; // 변환시킬 비트맵
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bit.compress(CompressFormat.JPEG , 100 , stream);
byte[] b = stream.toByteArray();


바이트배열 - > 비트맵

byte[] b = data; // 변환시킬 바이트 배열
Bitmap bit = BitmapFactory.decodeByteArray( b , 0 , b.length);
ImageView v = (ImageView)findViewById(R.id.imgView);
v.setImageBitmap(bit);
반응형