我想将图像转换为 base 64 编码为字符串。从那个以oma_status-icon
xml格式发送到服务器。
但我从服务器响应中得到不支持的编码......
有没有其他方法可以将图像转换为 base64 字符串?
请..帮助...
我的代码是:
Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(), R.drawable.image);
ByteArrayOutputStream bao = new ByteArrayOutputStream();
bitmapOrg.compress(Bitmap.CompressFormat.JPEG, 100, bao);
byte [] ba = bao.toByteArray();
String ba1=Base64.encodeBytes(ba);