Enum TiffBitsPerPixel
Enumerates the available bits per pixel for the tiff format.
Namespace: SixLabors.ImageSharp.Formats.Tiff
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum TiffBitsPerPixel
Fields
Name | Description |
---|---|
Bit1 | 1 bit per pixel, for bi-color image. |
Bit10 | 10 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 | 12 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 | 14 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 | 16 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 | 24 bits per pixel. One byte for each color channel. |
Bit30 | 30 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 | 32 bits per pixel. One byte for each color channel. |
Bit36 | 36 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 | 4 bits per pixel, for images with a color palette. |
Bit42 | 42 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 | 48 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 | 6 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 | 64 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 | 8 bits per pixel, grayscale or color palette images. |