public static byte[] bitmapToByteArray( Bitmap bitmap ) {
ByteArrayOutputStream stream = new ByteArrayOutputStream() ;
bitmap.compress( Bitmap.CompressFormat.PNG, 100, stream) ;
byte[] byteArray = stream.toByteArray() ;
return byteArray ;
}
public static Bitmap byteArrayToBitmap(byte[] bytearr) {
return BitmapFactory.decodeByteArray(bytearr, 0, bytearr.length);
}
320x100
'프로그래밍 > Android-Java' 카테고리의 다른 글
[ANDROID] drawable 파일 bitmap 변환 (0) | 2020.10.29 |
---|---|
[ANDROID] dp 값 px 변환 (0) | 2020.10.29 |
[ANDROID] camera preview frame byte array to bitmap (0) | 2020.10.19 |
[ANDROID] Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug' (0) | 2020.10.16 |
[ANDROID] Expected BEGIN_ARRAY but was STRING at line 1 column 1 path $ (0) | 2020.10.16 |
댓글