gpt4 book ai didi

ios - AVCaptureVideoPreviewLayer 视频帧大小

转载 作者:可可西里 更新时间:2023-11-01 00:53:07 27 4
gpt4 key购买 nike

如何获取 AVCaptureVideoPreviewLayer 中的图像大小:

self.cameraPreviewLayer.frame = self.cameraView.frame; // (0.0, 0.0, 320.0, 568.0)

AVCaptureVideoPreviewLayer 内的图像小于框架。

最佳答案

您无法在 AVCaptureVideoPreviewLayer 框架内获取实际渲染大小。你必须计算它。

以下是获取实际视频尺寸的方法:

AVCaptureDeviceInput *videoDeviceInput = // initialised already in your app

// Here you can get the video dimensions:
CMVideoDimensions dimensions = CMVideoFormatDescriptionGetDimensions(videoDeviceInput.device.activeFormat.formatDescription);

从这里您可以计算 AVCaptureVideoPreviewLayer 框架内的纵横比拟合矩形。

关于ios - AVCaptureVideoPreviewLayer 视频帧大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29961902/

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