Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在ios中设计一个相机应用程序。我看到视频在 iphone 5 中使用了整个屏幕,但相机没有。所以我想知道默认相机用于设计我的应用程序的相机屏幕的屏幕宽度和高度。
这是因为与来自摄像机的馈送不同,来自摄像机的馈送具有与设备屏幕不同的纵横比。要纠正此问题,您需要调整预览图层的大小以匹配提要的纵横比,或者您需要更改视频预览图层的视频重力属性。
其中一次就足够了:
[myPreviewLayer setVideoGravity:AVLayerVideoGravityResizeAspectFill]; [myPreviewLayer setVideoGravity:AVLayerVideoGravityResize];