gpt4 book ai didi

Android 相机 setOrientation 不受影响

转载 作者:行者123 更新时间:2023-11-30 00:23:31 29 4
gpt4 key购买 nike

我编写了自己的相机应用程序,但输出图像有问题。当我尝试制作图片时,我使用下一个代码设置方向度:

mCamera.getParameters().set("rotation", mOrientation);

mCamera.getParameters().setRotation(mOrientation);

mCamera.getParameters().setRotation(0);

所有这些 fragment 都不会旋转输出图像

最佳答案

尝试这样使用

 if (camInfo.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
displayRotation = (cameraRotationOffset + degrees) % 360;
displayRotation = (360 - displayRotation) % 360; // compensate
// the
// mirror
} else { // back-facing
displayRotation = (cameraRotationOffset - degrees + 360) % 360;
}
cam.setDisplayOrientation(displayRotation);

用你的角度替换度数

关于Android 相机 setOrientation 不受影响,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45838702/

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