다음을 통해 공유


AVCaptureStillImageOutput.AutomaticallyEnablesStillImageStabilizationWhenAvailable 속성

정의

자동 이미지 손떨림 보정을 사용해야 하는지 여부를 제어합니다.

[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool AutomaticallyEnablesStillImageStabilizationWhenAvailable { [Foundation.Export("automaticallyEnablesStillImageStabilizationWhenAvailable")] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; [Foundation.Export("setAutomaticallyEnablesStillImageStabilizationWhenAvailable:")] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)] set; }
member this.AutomaticallyEnablesStillImageStabilizationWhenAvailable : bool with get, set

속성 값

하드웨어 이미지 안정화를 지원하는 디바이스의 경우 기본값이 true로 설정되며, 그렇지 않으면 false입니다.

특성

설명

이미지 안정화는 사진 촬영에 약간의 지연을 도입합니다. 이 기능은 기본적으로 사용하도록 설정되어 있으므로 해제해야 합니다.

이미지 안정화를 지원하지 않는 하드웨어에서 이 값을 true로 설정하려고 하면 예외가 throw됩니다. 사용 하 여는 IsStillImageStabilizationSupported 하드웨어에서 지원 하는지 여부를 쿼리 하는 속성입니다.

if (capture.IsStillImageStabilizationSupported)
    capture.AutomaticallyEnableStillImageStabilizationWhenAvailable = true;

적용 대상