Enum PixelType
Represents the type of pixel format used in a PixelFormats
public enum PixelType
Fields
ArrayF16 = 10Array of pixel values, each component stored separately as 16-bit floating point values
ArrayF32 = 11Array of pixel values, each component stored separately as 32-bit floating point values
ArrayU16 = 8Array of pixel values, each component stored separately as unsigned 16-bit integers
ArrayU32 = 9Array of pixel values, each component stored separately as unsigned 32-bit integers
ArrayU8 = 7Array of pixel values, each component stored separately as unsigned 8-bit integers
Index1 = 1Indexed pixel values, 1 bit per pixel
Used in conjuction with a Palette.
Index2 = 12Indexed pixel values, 2 bits per pixel
Index4 = 2Indexed pixel values, 4 bits per pixel
Used in conjuction with a Palette.
Index8 = 3Indexed pixel values, 8 bits per pixel
Used in conjuction with a Palette.
Packed16 = 5Packed pixel values, totalling 16 bits per pixel
Packed32 = 6Packed pixel values, totalling 32 bits per pixel
Packed8 = 4Packed pixel values, totalling 8 bits per pixel
Unknown = 0Unknown