Android中是否存在与UIImage iOS类相同的内容?我需要一个可以接收字节数组并将其作为图像存储在内存中的对象,以便稍后使用。
答案 0 :(得分:0)
您可以将位图转换为字节数组并存储到所需位置。像那样使用
位图bmp = intent.getExtras()。get(“data”);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG,100,stream);
byte [] byteArray = stream.toByteArray();
答案 1 :(得分:0)
您可以尝试使用Bitmap
和BitmapFactory
参考:http://developer.android.com/reference/android/graphics/Bitmap.html
答案 2 :(得分:0)