Enum TiffCompression
Enumeration representing the compression formats defined by the Tiff file-format.
Namespace: SixLabors.ImageSharp.Formats.Tiff.Constants
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum TiffCompression : ushort
Fields
Name | Description |
---|---|
Ccitt1D | CCITT Group 3 1-Dimensional Modified Huffman run-length encoding. |
CcittGroup3Fax | T4-encoding: CCITT T.4 bi-level encoding (see Section 11 of the TIFF 6.0 specification). |
CcittGroup4Fax | T6-encoding: CCITT T.6 bi-level encoding (see Section 11 of the TIFF 6.0 specification). |
Deflate | Deflate compression, using zlib data format (see TIFF Specification, supplement 2). |
Invalid | A invalid compression value. |
ItuTRecT43 | ITU-T Rec. T.43 representation, using ITU-T Rec. T.82 (JBIG) (see RFC2301). Note: The TIFF encoder does not yet support this compression and will default to use no compression instead, if this is chosen. |
ItuTRecT82 | ITU-T Rec. T.82 coding, applying ITU-T Rec. T.85 (JBIG) (see RFC2301). Note: The TIFF encoder does not yet support this compression and will default to use no compression instead, if this is chosen. |
Jpeg | JPEG compression (see TIFF Specification, supplement 2). Note: The TIFF encoder does not yet support this compression and will default to use no compression instead, if this is chosen. |
Lzw | LZW compression (see Section 13 of the TIFF 6.0 specification). |
NeXT | NeXT 2-bit Grey Scale compression algorithm. Note: The TIFF encoder does not support this compression and will default to use no compression instead, if this is chosen. |
None | No compression. |
OldDeflate | Deflate compression - old. Note: The TIFF encoder does not support this compression and will default to use no compression instead, if this is chosen. |
OldJpeg | JPEG compression - obsolete (see Section 22 of the TIFF 6.0 specification). Note: The TIFF encoder does not support this compression and will default to use no compression instead, if this is chosen. |
PackBits | PackBits compression. |
ThunderScan | ThunderScan 4-bit compression. Note: The TIFF encoder does not support this compression and will default to use no compression instead, if this is chosen. |
Webp | Pixel data is compressed with webp encoder. Note: The TIFF encoder does not support this compression and will default to use no compression instead, if this is chosen. |