Click or drag to resize

TiffCompression Enumeration

Contains the various compression types available for TIFF images.

Namespace:  Atalasoft.Imaging.Codec
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public enum TiffCompression
Members
  Member nameDescription
NoCompression Specify no compression.
Group3FaxEncoding CCITT Group 3 fax encoding. Used on 1-bit images only, otherwise uses no compression.
Group4FaxEncoding CCITT Group 4 fax encoding. Used on 1-bit images only, otherwise uses no compression.
JpegCompression Lossy JPEG compression. Used on 8-bit grayscale and 24-bit RGB images only, otherwise uses no compression.
MacintoshPackbits A modified RLE (run length encoding) style of compression
Deflate ZIPLib compression, similar to PNG and WinZip
Lzw LZW compression.
ModifiedHuffman CCITT modified Huffman RLE. Used on 1-bit images only, otherwise uses no compression.
Default Chooses the most appropriate compression depending on the pixel format. 1-bpp image will be saved with CCITG4 compression, and everything else will use LZW.
See Also