Choosing the right AVCaptureSessionPreset for different devices

泄露秘密 提交于 2019-12-02 04:45:27

you can use like below.

[CaptureSession setSessionPreset:AVCaptureSessionPresetMedium];
if ([CaptureSession canSetSessionPreset:AVCaptureSessionPreset640x480])     //Check size based configs are supported before setting them
        [CaptureSession setSessionPreset:AVCaptureSessionPreset640x480];
if ([CaptureSession canSetSessionPreset:AVCaptureSessionPreset1280x720])
        [CaptureSession setSessionPreset:AVCaptureSessionPreset1280x720];
if ([CaptureSession canSetSessionPreset:AVCaptureSessionPreset1920x1080])
        [CaptureSession setSessionPreset:AVCaptureSessionPreset1920x1080];
if ([CaptureSession canSetSessionPreset:AVCaptureSessionPreset3840x2160])
        [CaptureSession setSessionPreset:AVCaptureSessionPreset3840x2160];

or you can use just one statement

[CaptureSession setSessionPreset:AVCaptureSessionPresetHigh];
#ifdef __AVAILABILITY_INTERNAL__IPHONE_9_0_DEP__IPHONE_9_0
CGFloat iOSVersion = [[[UIDevice currentDevice] systemVersion] integerValue];
if (iOSVersion>=9 && [session canSetSessionPreset:AVCaptureSessionPreset3840x2160]) {
    session.sessionPreset = AVCaptureSessionPreset3840x2160;
}
#else
// the code above won't compile in Xcode 6 and older
#endif

...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!