Skip to main content

TakePhotoModeEnum

enum class TakePhotoModeEnum

Description: Camera photo mode

enum class TakePhotoModeEnum(var value: Int) {
UNKNOWN(0xFF),

/**
* single shot
*/
SINGLE(0),

/**
* Continuous shooting
*/
BUST(1),

/**
* Timing shot
*/
INTERVAL(2),

/**
* AEB
*/
AEB(3),

/**
* night scene
*/
HYPERSEN(4),

/**
* panorama
*/
PANORAMA(5),

/**
* Ultra-clear matrix
*/
MATRIX(6),

/**
* HDR In order to obtain the supported modes under HDR
*/
HDR(7),

/**
* LinkedZoom In order to obtain the supported modes under LinkedZoom
*/
LinkedZoom (8),

/**
* NightShot In order to obtain the modes supported by NightShot
*/
NightShot(9);


}