我通过jpeg事件的回调调用takePicture
:camera.takePicture(null, null, this);
这是回调处理程序:
@Override
public void onPictureTaken(final byte[] data, Camera camera) {
Bitmap picture = BitmapFactory.decodeByteArray(data, 0, data.length);
MediaStore.Images.Media.insertImage(getContentResolver(), picture, "name" , "description");
}
在测试中,我发现图像始终围绕y轴镜像。有谁知道(1)这是否适用于所有设备,以及(2)为什么?我真的不明白为什么字节数据不能代表我在相机预览中看到的内容。这是不合理的期待吗?