iPad:示例项目 AVCapture:将视频预览旋转到不同方向?

发布于 2024-11-02 03:58:25 字数 44 浏览 0 评论 0原文

iPad:示例项目 AVCapture:如何旋转视频预览以适应不同的方向?

iPad: Sample project AVCapture: How do you rotate the video preview for different orientations?

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

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

发布评论

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

评论(2

把时间冻结 2024-11-09 03:58:25

如果你想采取简单的方法,只要不支持除 UIInterfaceOrientation 之外的任何方向,图像就会正确显示。

否则,您必须在 willAnimateRotationToInterfaceOrientation:duration: 方法中对预览层应用与​​界面方向相反的平移。例如,UIInterfaceOrientationLandscapeLeft 是 (IIRC) 顺时针旋转 90°。因此对预览图层应用逆时针旋转 90° 进行补偿。

If you want to take the easy way, just don't support any orientation besides UIInterfaceOrientation and the image will be correctly displayed.

Otherwise, you'll have to apply a translation to the preview layer opposite that of the interface orientation in your willAnimateRotationToInterfaceOrientation:duration: method. For example, UIInterfaceOrientationLandscapeLeft is (IIRC) a 90° clockwise rotation. So apply a 90° counterclockwise rotation to the preview layer to compensate.

心房的律动 2024-11-09 03:58:25

这就是我使用的:

- (void)willAnimateRotationToInterfaceOrientation: (UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
    [CATransaction begin];
    self.prevLayer.orientation = toInterfaceOrientation; //AVCaptureVideoPreviewLayer
    self.prevLayer.frame = self.view.frame;
    [CATransaction commit];

    [super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation duration:duration];
}

This is what I use:

- (void)willAnimateRotationToInterfaceOrientation: (UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
    [CATransaction begin];
    self.prevLayer.orientation = toInterfaceOrientation; //AVCaptureVideoPreviewLayer
    self.prevLayer.frame = self.view.frame;
    [CATransaction commit];

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