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 guardo il buffer dopo che la chiamata ai copyPixelsToBuffer
byte sono tutti 0 ... La bitmap restituita dalla telecamera è immutabile ... ma non dovrebbe importare dal momento che sta facendo una copia.
Cosa potrebbe esserci di sbagliato in questo codice?