gpt4 book ai didi

android - onPictureTaken中的图片字节数据为什么会出现镜像?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:47:26 24 4
gpt4 key购买 nike

我用 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) 为什么?我真的不明白为什么字节数据不代表我在相机预览中看到的内容。这是一个不合理的期望吗?

最佳答案

我认为您使用的是前置摄像头,对吗?这就是前置摄像头的行为。即使您在笔记本电脑上使用网络摄像头,也是一样的。

如果你想修复它。请引用Here

关于android - onPictureTaken中的图片字节数据为什么会出现镜像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16229155/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com