0
在我的web服務中,圖像以byteArray格式存儲。我想轉換位圖圖像。將byteArray轉換爲android中的位圖?
我已將此代碼附加到此處。
BufferedInputStream bufferedInputStream = new BufferedInputStream(AndroidJSONParsingActivity.inputStream);
Bitmap bmp = BitmapFactory.decodeStream(bufferedInputStream);
ByteArrayOutputStream companylogo = new
ByteArrayOutputStream();
ImageView image=new ImageView(this);
image.setImageBitmap(bmp);
我有這麼多的字節數組圖像如何製作image.for前標識:[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68 ,82,0,0,0,128,0,0,0,128,8,6,0,0,0,195]在我的web服務json格式 – Deepi
這可以幫助你,http://stackoverflow.com/questions/15021526/retrieve -byte-in-android-from-json-webservice http://stackoverflow.com/questions/10403862/java-parse-json-byte-array – Numair