EmfPlusPixelFormat

EmfPlusPixelFormat enumeration

The PixelFormat enumeration defines pixel formats that are supported in EMF+ bitmaps.

public enum EmfPlusPixelFormat

Values

NameValueDescription
PixelFormatUndefined0The format is not specified.
PixelFormat1bppIndexed196865The format is monochrome, and a color palette lookup table is used.
PixelFormat4bppIndexed197634The format is 16-color, and a color palette lookup table is used.
PixelFormat8bppIndexed198659The format is 256-color, and a color palette lookup table is used.
PixelFormat16bppGrayScale1052676The format is 16 bits per pixel, grayscale.
PixelFormat16bppRGB555135173The format is 16 bits per pixel; 5 bits each are used for the red, green, and blue components. The remaining bit is not used.
PixelFormat16bppRGB565135174The format is 16 bits per pixel; 5 bits are used for the red component, 6 bits for the green component, and 5 bits for the blue component.
PixelFormat16bppARGB1555397319The format is 16 bits per pixel; 1 bit is used for the alpha component, and 5 bits each are used for the red, green, and blue components.
PixelFormat24bppRGB137224The format is 24 bits per pixel; 8 bits each are used for the red, green, and blue components.
PixelFormat32bppRGB139273The format is 32 bits per pixel; 8 bits each are used for the red, green, and blue components. The remaining 8 bits are not used.
PixelFormat32bppARGB2498570The format is 32 bits per pixel; 8 bits each are used for the alpha, red, green, and blue components.
PixelFormat32bppPARGB925707The format is 32 bits per pixel; 8 bits each are used for the alpha, red, green, and blue components. The red, green, and blue components are premultiplied according to the alpha component.
PixelFormat48bppRGB1060876The format is 48 bits per pixel; 16 bits each are used for the red, green, and blue components.
PixelFormat64bppARGB3424269The format is 64 bits per pixel; 16 bits each are used for the alpha, red, green, and blue components.
PixelFormat64bppPARGB1720334The format is 64 bits per pixel; 16 bits each are used for the alpha, red, green, and blue components. The red, green, and blue components are premultiplied according to the alpha component.

See Also