Partager via


AVCaptureStillImageOutput.AutomaticallyEnablesStillImageStabilizationWhenAvailable Propriété

Définition

Contrôle si la stabilisation automatique d’image doit être utilisée

[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

Valeur de propriété

La valeur par défaut est true pour les appareils qui prennent en charge la stabilisation d’image matérielle, false dans le cas contraire.

Attributs

Remarques

La stabilisation d’image introduit un petit retard dans la prise de photos. Il s’agit d’une raison pour désactiver cette fonctionnalité, car elle est activée par défaut.

Les tentatives de définition de cette valeur sur true sur le matériel qui ne prend pas en charge la stabilisation d’image entraînent la levée d’une exception. Utilisez la IsStillImageStabilizationSupported propriété pour demander si le matériel la prend en charge.

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

S’applique à