Java: Converting Bitmap to Byte Array
When attempting to convert a Bitmap object to a byte array using the provided code, users may encounter an issue where all bytes in the buffer remain at 0 after calling copyPixelsToBuffer(). Despite the immutability of the Bitmap returned from the camera, it shouldn't affect the copying process.
Potential Root Cause:
The code snippet uses the ByteBuffer class to allocate memory and copy the Bitmap's pixels into the buffer. However, it directly accesses an underlying buffer without setting its offset correctly. This may result in the get() method returning only 0 values.
Solution:
To rectify this issue, consider using the following approach:
Bitmap bmp = intent.getExtras().get("data");
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();
bmp.recycle();
In this improved code:
By using this approach, you can effectively convert a Bitmap object to a byte array without encountering the buffer underflow issue.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3