FREE_IMAGE_COLOR_DEPTH Enumeration

FreeImage.NET

FREE_IMAGE_COLOR_DEPTH Enumeration
Enumeration used for color conversions. FREE_IMAGE_COLOR_DEPTH contains several colors to convert to. The default value 'FICD_AUTO'.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
[FlagsAttribute]
public enum FREE_IMAGE_COLOR_DEPTH
Members
  Member nameValueDescription
FICD_UNKNOWN0 Unknown.
FICD_AUTO0 Auto selected by the used algorithm.
FICD_01_BPP1 1-bit.
FICD_01_BPP_DITHER1 1-bit using dithering.
FICD_01_BPP_THRESHOLD3 1-bit using threshold.
FICD_04_BPP4 4-bit.
FICD_08_BPP8 8-bit.
FICD_16_BPP_55518 16-bit 555 (1 bit remains unused).
FICD_16_BPP16 16-bit 565 (all bits are used).
FICD_24_BPP24 24-bit.
FICD_32_BPP32 32-bit.
FICD_REORDER_PALETTE1024 Reorder palette (make it linear). Only affects 1-, 4- and 8-bit images.

The palette is only reordered in case the image is greyscale (all palette entries have the same red, green and blue value).

FICD_FORCE_GREYSCALE2048 Converts the image to greyscale.
FICD_COLOR_MASK61 Flag to mask out all non color depth flags.
See Also