我已經查了一下,但不能清楚地看到它。我怎樣才能將一個圖像的字節數組設置爲一個圖像視圖?我得到了字符串在java中嘗試BufferedImage img = ImageIO.read(new ByteArrayInputStream(bytes));
,但不能:(任何人都可以幫助我?對不起,如果問題就像一個小白菜:)圖像字節數組到imageview
22
A
回答
52
嘗試下面的代碼轉換位圖爲bytearray和bytearray到位圖,它會解決你的問題。
轉換位圖的ByteArray: -
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();
轉換ByteArray的位圖: -
Bitmap bmp = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
ImageView image = (ImageView) findViewById(R.id.imageView1);
image.setImageBitmap(Bitmap.createScaledBitmap(bmp, image.getWidth(),
image.getHeight(), false)));
-1
獲得字節從位圖
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 70, stream);
byte[] bytearray = stream.toByteArray();
return bytearray;
+0
這是你給的錯誤答案。 –
相關問題
- 1. 圖像到字節數組
- 2. 字節數組圖像到位圖
- 3. 字節數組到位圖圖像
- 4. 字節數組到圖像轉換
- 5. JavaFx圖像到字節[]數組(閉合)
- 6. 字節數組到WriteableBitmap圖像IValueConverter WP7
- 7. Silverlight 4,圖像到字節數組
- 8. .NET核心字節數組到圖像
- 9. 字節數組到圖像顯示
- 10. 圖像到字節數組不一致
- 11. 字節數組到圖像對象
- 12. 字節數組圖像
- 13. 圖像的字節數組
- 14. 如何將圖像(字節數組)從JSON顯示到imageView ...工廠返回null
- 15. 轉換字節數組圖像並返回到字節數組,值改變
- 16. 圖像到字節數組到字符串(反之亦然)
- 17. 將圖像從字節數組加載到圖形視圖中
- 18. 從imageview可繪製到字節數組(數據庫)
- 19. Java字節數組比JPG圖像
- 20. 動態顯示圖像(字節數組)
- 21. 用OpenGL讀取圖像字節數組
- 22. SQL圖像 - >字節數組
- 23. DataTemplate圖像標識與字節數組
- 24. 字節數組Base64String(圖像轉換)
- 25. 從字節數組中裁剪圖像
- 26. 轉換字節數組圖像
- 27. 字節數組輸出爲圖像
- 28. 如何解析圖像字節[]數組
- 29. 的SqlDataSource - UpdateParameters與圖像字節數組
- 30. GSP,從數組字節圖像
感謝名單的隊友,將檢查和電話你 –
權在錢:) thanx很多 –
可能有任何OutOfMemoryError與此? –