我将位图转换为字节数组:
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();
例如,我的位图213x350 = 74550
像素,
所以长度 byteArray 74550*4 = 298200
。
但是byteArray.length returned 57+ thousand
。
怎么了?