Bitmap bmp = intent.getExtras().get("data");
int size = bmp.getRowBytes() * bmp.getHeight();
ByteBuffer b = ByteBuffer.allocate(size);
bmp.copyPixelsToBuffer(b);
byte[] bytes = new byte[size];
try {
b.get(bytes, 0, bytes.length);
} catch (BufferUnderflowException e) {
// always happens
}
// do something with byte[]
Quando olho para o buffer depois que a chamada para copyPixelsToBuffer
os bytes é 0 ... O bitmap retornado da câmera é imutável ... mas isso não deve importar, pois está fazendo uma cópia.
O que poderia estar errado com esse código?