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[]
Quand je regarde le tampon après que l'appel aux copyPixelsToBuffer
octets soit tous à 0 ... Le bitmap renvoyé par la caméra est immuable ... mais cela n'a pas d'importance car il fait une copie.
Quel pourrait être le problème avec ce code?