Enum TiffBitsPerPixel
- Namespace
- SixLabors.ImageSharp.Formats.Tiff
- Assembly
- SixLabors.ImageSharp.dll
Enumerates the available bits per pixel for the tiff format.
public enum TiffBitsPerPixel
Fields
Bit1 = 11 bit per pixel, for bi-color image.
Bit10 = 1010 bits per pixel, for gray images.
Note: The TiffEncoder does not yet support 10 bits per pixel and will default to 24 bits per pixel instead.
Bit12 = 1212 bits per pixel. 4 bit for each color channel.
Note: The TiffEncoder does not yet support 4 bits per color channel and will default to 24 bits per pixel instead.
Bit14 = 1414 bits per pixel, for gray images.
Note: The TiffEncoder does not yet support 14 bits per pixel images and will default to 24 bits per pixel instead.
Bit16 = 1616 bits per pixel, for gray images.
Note: The TiffEncoder does not yet support 16 bits per color channel and will default to 16 bits grayscale instead.
Bit24 = 2424 bits per pixel. One byte for each color channel.
Bit30 = 3030 bits per pixel. 10 bit for each color channel.
Note: The TiffEncoder does not yet support 10 bits per color channel and will default to 24 bits per pixel instead.
Bit32 = 3232 bits per pixel. One byte for each color channel.
Bit36 = 3636 bits per pixel. 12 bit for each color channel.
Note: The TiffEncoder does not yet support 12 bits per color channel and will default to 24 bits per pixel instead.
Bit4 = 44 bits per pixel, for images with a color palette.
Bit42 = 4242 bits per pixel. 14 bit for each color channel.
Note: The TiffEncoder does not yet support 14 bits per color channel and will default to 24 bits per pixel instead.
Bit48 = 4848 bits per pixel. 16 bit for each color channel.
Note: The TiffEncoder does not yet support 16 bits per color channel and will default to 24 bits per pixel instead.
Bit6 = 66 bits per pixel. 2 bit for each color channel.
Note: The TiffEncoder does not yet support 2 bits per color channel and will default to 24 bits per pixel instead.
Bit64 = 6464 bits per pixel. 16 bit for each color channel.
Note: The TiffEncoder does not yet support 16 bits per color channel and will default to 32 bits per pixel instead.
Bit8 = 88 bits per pixel, grayscale or color palette images.