AVCaptureStillImageOutput.AutomaticallyEnablesStillImageStabilizationWhenAvailable Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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;