value property
Gets the enumeration value as int. return The value.
Implementation
int get value {
switch (this) {
case ImageFormat.bmp:
return 0;
case ImageFormat.jpeg:
return 2;
case ImageFormat.png:
return 13;
case ImageFormat.tiff:
return 18;
case ImageFormat.jpeg2000:
return 30;
case ImageFormat.webp:
return 31;
case ImageFormat.raw:
return 34;
}
}