public static String getBase64String(Bitmap bitmap)
{
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
byte[] imageBytes = byteArrayOutputStream.toByteArray();
return Base64.encodeToString(imageBytes, Base64.NO_WRAP);
}
String encoded = android.util.Base64.encodeToString(bytes, android.util.Base64.DEFAULT);
320x100
'프로그래밍 > Android-Java' 카테고리의 다른 글
[ANDROID] java.lang.IllegalArgumentException: Comparison method violates its general contract! (0) | 2020.12.04 |
---|---|
[ANDROID] 두 점의 각도 구하기 (0) | 2020.11.17 |
[ANDROID] drawable 파일 bitmap 변환 (0) | 2020.10.29 |
[ANDROID] dp 값 px 변환 (0) | 2020.10.29 |
[ANDROID] bitmap byte array 변환 (0) | 2020.10.29 |
댓글