0
A
回答
1
您可以Base64編碼字符串轉換爲字節數組,
,並從字節數組可以解碼位圖。
使用這2種方法。
byte[] arr = Base64.decode(s, options);
Bitmap b = BitmapFactory.decodeByteArray(data, offset, length);
+0
感謝您的答覆,我試過這個,但它的返回null形式的BitmapFactory.decodeByteArray()。 –
+0
你可以請建議任何其他解決方案將字符串轉換爲bitamp。 –
相關問題
- 1. 將字符串轉換爲位圖c#
- 2. 將字符串轉換爲位圖
- 3. AS3 - 將字符串轉換爲位圖
- 4. 將位圖轉換爲字符串
- 5. Android - 將字符串轉換爲圖像
- 6. 將意圖轉換爲字符串Android
- 7. 將位圖轉換爲bytearray轉換爲字符串然後轉換回位圖在Android中始終爲空
- 8. 將base64字符串轉換爲位圖的Android代碼
- 9. Android將位圖轉換爲Base64字符串問題
- 10. 位圖將文本轉換爲一個字符串的Android
- 11. Android - 將字符串轉換爲字節[]
- 12. 將Ascii字符串轉換爲位流
- 13. 將位串轉換爲字符
- 14. 將LARGE_INTEGER轉換爲64位字符串
- 15. 將字符串轉換爲位數組
- 16. Android將字符串轉換爲LocaleCurrency
- 17. 將字符串轉換爲數組(android)
- 18. 將字符串轉換爲android的
- 19. Android將字符串轉換爲日期
- 20. Android - 將字符串轉換爲long值
- 21. Android將字符串轉換爲JSON
- 22. 將字符串轉換爲整數Android
- 23. Android/Java - 將DataInputStream轉換爲字符串
- 24. Android:將字符串轉換爲時間
- 25. Android將字符串轉換爲日期
- 26. 將字符串轉換爲double(java/android)
- 27. 字符串轉換爲圖像android
- 28. 將字符串轉換爲字符串
- 29. 將字符串轉換爲字符串
- 30. 將字符串轉換爲字符串
你做了什麼,你面臨什麼問題/錯誤? – MKJParekh
「無法轉換」=>接下來發生了什麼? –
只是看看這個http://stackoverflow.com/q/4837110/840861 – Uttam