java – 如何在android中将图像转换为base64字符串?

Bitmap bm = BitmapFactory.decodeResource(getResources(),R.drawable.image);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    bm.compress(Bitmap.CompressFormat.JPEG, 100, baos); //bm is the bitmap object
    final String encodedImage = Base64.encodeToString(baos.toByteArray(), Base64.DEFAULT);

这是我的代码.它将图像上传到服务器上.但是,我只能看到一个盒子.我哪里错了?

最佳答案 确保在结束时转换回位图,即服务器端

1,将您的imageview转换为位图.

 imageView.buildDrawingCache();
 Bitmap bmap = imageView.getDrawingCache();

2,将位图转换为base64 String并传递给服务器

public String getEncoded64ImageStringFromBitmap(Bitmap bitmap) {
  ByteArrayOutputStream stream = new ByteArrayOutputStream();
  bitmap.compress(CompressFormat.JPEG, 70, stream);
  byte[] byteFormat = stream.toByteArray();
  // get the base 64 string
  String imgString = Base64.encodeToString(byteFormat, Base64.NO_WRAP);
  return imgString;
}

3,在服务器端将base64转换为位图.
(这是java代码,用你的服务器端语言做)

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

设置此位图以显示图像

点赞