1. ホーム
  2. アンドロイド

[解決済み] Base64文字列をBitmap画像に変換してImageViewに表示する方法は?

2022-04-17 02:29:24

質問

BitMap画像を表すBase64文字列があります。

AndroidアプリのImageViewで使用するために、このStringを再度BitMapイメージに変換する必要があります。

どうすればいいのでしょうか?

これは、画像をbase64文字列に変換するために使用するコードです。

//proceso de transformar la imagen BitMap en un String:
//android:src="c:\logo.png"
Resources r = this.getResources();
Bitmap bm = BitmapFactory.decodeResource(r, R.drawable.logo);
ByteArrayOutputStream baos = new ByteArrayOutputStream();  
bm.compress(Bitmap.CompressFormat.PNG, 100, baos); //bm is the bitmap object   
byte[] b = baos.toByteArray();
//String encodedImage = Base64.encode(b, Base64.DEFAULT);
encodedImage = Base64.encodeBytes(b);

解決方法は?

基本的には、他の組み込みメソッドを使って、コードを元に戻すだけです。

byte[] decodedString = Base64.decode(encodedImage, Base64.DEFAULT);
Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);