Android 相机方向问题

发布于 2024-11-30 12:51:05 字数 92 浏览 0 评论 0原文

我正在开发 Android 应用程序。因为我有相机的功能。 我已经实现了它并且它对我来说工作得很好。唯一的问题是我的相机的预览,其旋转方向不正确。 有人对此有解决方案吗?

I am developing android application. In that I have functionality of camera.
I have implemented that and its working fine for me. Only thing is preview of my camera, orientation is not correct its rotated.
Is anybody having solution on that.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是偏爱你 2024-12-07 12:51:05

您使用哪个 API?如果是 1.5 或 1.6(API 4 和 API 5),则存在有关相机方向的错误。你看到90度旋转视图了吗?检查此链接

如果您使用的是 SurfaceView,则可能存在以下问题这个问题的解决方案(让 c 是你的相机对象)

Camera.Parameters p = c.getParameters();
parameters.set("orientation", "portrait");
parameters.set("rotation", 90);
c.setParameters(p);

希望它对你有用。

Which API are you using? If it's 1.5 or 1.6 (API 4 & API 5) there is a bug about orientation of camera. Do you see 90 degree rotated view? Check this link

If you are using SurfaceView, there is a possible solution to this problem (let c is your camera object)

Camera.Parameters p = c.getParameters();
parameters.set("orientation", "portrait");
parameters.set("rotation", 90);
c.setParameters(p);

Hope it works well for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文