PixelDataType enum

Pixel data type enum, representing different data types for pixel values

Inheritance
Available extensions

Values

UBYTE → const PixelDataType

Unsigned byte

const PixelDataType(0)
BYTE → const PixelDataType

Signed byte

const PixelDataType(1)
USHORT → const PixelDataType

Unsigned short (16-bit)

const PixelDataType(2)
SHORT → const PixelDataType

Signed short (16-bit)

const PixelDataType(3)
UINT → const PixelDataType

Unsigned int (32-bit)

const PixelDataType(4)
INT → const PixelDataType

Signed int (32-bit)

const PixelDataType(5)
HALF → const PixelDataType

Half-float (16-bit float)

const PixelDataType(6)
FLOAT → const PixelDataType

Float (32-bits float)

const PixelDataType(7)
COMPRESSED → const PixelDataType

Compressed pixels

const PixelDataType(8)
UINT_10F_11F_11F_REV → const PixelDataType

Three low precision floating-point numbers

const PixelDataType(9)
USHORT_565 → const PixelDataType

Unsigned int (16-bit), encodes 3 RGB channels

const PixelDataType(10)
UINT_2_10_10_10_REV → const PixelDataType

Unsigned normalized 10 bits RGB, 2 bits alpha

const PixelDataType(11)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
The integer value of the enum
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<PixelDataType>
A constant List of the values in this enum, in order of their declaration.