Skip to main content

PhotoFormatEnum

enum class PhotoFormatEnum

Description: Picture format

enum class PhotoFormatEnum(var value: Int) {
/**
* JPG format of image captured
*/
JPG(0),
/**
* DNG format of image captured
*/
DNG(1),
/**
* JPGDNG format of image captured
*/
JPGDNG(2),
/**
* RJPEG format of image captured
*/
RJPEG(3),
/**
* RJPEGTIFF format of image captured
*/
RJPEGTIFF(4),
UNKNOWN(0xFF);

}