본문 바로가기
+)기록/과제

정리사항 46 - 비트맵이미지 BASE64변환

by AppJinny 2023. 4. 18.

*비트맵이미지 BASE64변환(적용)

            //얼굴인식 이미지 base64변환
            // BytArrayOutputStream을 이용해 Bitmap 인코딩
            ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
            bitmap.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
            // 인코딩된 ByteStream을 String으로
            byte[] image = byteArrayOutputStream.toByteArray();
            base64FaceImg = Base64.encodeToString(image, Base64.NO_WRAP);

 

https://puzi.tistory.com/30

 

[안드로이드]Bitmap 이미지를 Base64로 html에 표시하기

1. 이미지를 Bitmap으로 변환 1. 안드로이드 리소스를 Bitmap으로 변환 1 2 // drawable에 있는 리소스를 BitmapFactory를 이용해 bitmap 작성 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_guest, option

puzi.tistory.com

 

https://stackoverflow.com/questions/9224056/android-bitmap-to-base64-string

 

Android Bitmap to Base64 String

How do I convert a large Bitmap (photo taken with the phone's camera) to a Base64 String?

stackoverflow.com