我想編碼和解碼Bitmap
對象在字符串base64
。我使用Android API10,Android中的base64字符串中的位圖對象的編碼和解碼
我試過,沒有成功,使用這種形式的方法來編碼Bitmap
。
public static String encodeTobase64(Bitmap image) {
Bitmap immagex=image;
ByteArrayOutputStream baos = new ByteArrayOutputStream();
immagex.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] b = baos.toByteArray();
String imageEncoded = Base64.encodeToString(b,Base64.DEFAULT);
Log.e("LOOK", imageEncoded);
return imageEncoded;
}
完美..謝謝 – Noman 2013-11-17 12:42:48
謝謝!這正是我所需要的,簡短而甜美。 – 2014-01-31 22:24:49
代碼說話多於言語,謝謝! – atx 2014-12-11 10:19:01