public static byte[] bitmapToByteArray( Bitmap $bitmap )
{
ByteArrayOutputStream stream = new ByteArrayOutputStream() ;
$bitmap.compress( CompressFormat.PNG, 100, stream) ;
byte[] byteArray = stream.toByteArray() ;
Log("bytesize : "+byteArray.length);
return byteArray ;
}
'ANDROID' 카테고리의 다른 글
안드로이드 터치이벤트 touchevent 좌표 사각형 충돌체크. (0) | 2014.10.11 |
---|---|
두 좌표의 거리 구하기. (0) | 2014.10.11 |
android 치트 막기. (0) | 2014.10.11 |
웹으로 파일 업로드. (0) | 2014.10.11 |
bmp to png 비트맵을 png파일로 저장하자. (0) | 2014.10.11 |