SBSDKCameraExposureSettings

@interface SBSDKCameraExposureSettings : NSObject

This class provides information about the current cameras exposure settings.

  • The exposure duration of the camera in milliseconds.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double exposureDuration;

    Swift

    var exposureDuration: Double { get }
  • The exposure target offset in EV. Negative values mean the image is too dark, positive values mean the image is too bright. Usually the camera automatically tries to adapt its exposure parameters to keep the exposure target offset at a value of 0 resulting in a proper exposure of the image. If this value is not close to 0 the camera cannot adjust its exposure parameters properly, the image is either way too dark or too bright.

    Declaration

    Objective-C

    @property (nonatomic, readonly) float exposureTargetOffset;

    Swift

    var exposureTargetOffset: Float { get }
  • The ISO (or amplification) value of the camera. The higher the value the more noise and less detail the image will have.

    Declaration

    Objective-C

    @property (nonatomic, readonly) float ISOValue;

    Swift

    var isoValue: Float { get }