Enum PixelFormat
Specifies the supported pixel formats
Namespace:Neodynamic.SDK.Printing
Assembly:Neodynamic.SDK.ThermalLabel.dll
Syntax
public enum PixelFormat
Fields
BGR24
BGR24 is a RGB format with 24 bits per pixel (BPP). Each color channel (Blue, Green, and Red) is allocated 8 bits per pixel (BPP).
Declaration
BGR24 = 0
Field Value
Type | Description |
---|---|
PixelFormat |
BGR32
BGR32 is a RGB format with 32 bits per pixel (BPP). Each color channel (Blue, Green, and Red) is allocated 8 bits per pixel (BPP).
Declaration
BGR32 = 1
Field Value
Type | Description |
---|---|
PixelFormat |
BGRA32
BGRA32 is a RGB format with 32 bits per pixel (BPP). Each color channel (Blue, Green, Red, and Alpha) is allocated 8 bits per pixel (BPP).
Declaration
BGRA32 = 2
Field Value
Type | Description |
---|---|
PixelFormat |
CMYK32
CMYK32 is a pixel format which displays 32 bits per pixel (BPP) with each color channel (Cyan, Magenta, Yellow, and Black) allocated 8 bits per pixel (BPP).
Declaration
CMYK32 = 5
Field Value
Type | Description |
---|---|
PixelFormat |
Monochrome
Monochrome is a Black and White pixel format which displays one bit of data per pixel as either black or white.
Declaration
Monochrome = 4
Field Value
Type | Description |
---|---|
PixelFormat |
PBGRA32
PBGRA32 is a RGB format with 32 bits per pixel (BPP). Each color channel (Blue, Green, Red, and Alpha) is allocated 8 bits per pixel (BPP). Each color channel is pre-multiplied by the alpha value.
Declaration
PBGRA32 = 3
Field Value
Type | Description |
---|---|
PixelFormat |