ImageColorEnum
enum class ImageColorEnum
Description: Image color
enum class ImageColorEnum(var value: Int) {
/**
* original image
*/
NONE(0),
/**
* log style
*/
LOG(1),
/**
* Bright style
*/
VIVID(2),
/**
* black and white style
*/
BLACK_WHITE(3),
/**
* Art style
*/
ART(4),
/**
* Film style
*/
FILM(5),
/**
* beach style
*/
BEACH(6),
/**
* Fantasy style
*/
DREAM(7),
/**
* Classical style
*/
CLASSIC(8),
/**
* nostalgic style
*/
NOSTALGIC(9),
/**
*unknown
*/
UNKNOWN(0xFF);
}