TiffSettings.Compression Property

Gets or sets a compression type to write the image with.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public CompressionType Compression { get; set; }

Property Value

A CompressionType to write the image with. The default value is None.

Remarks

TIFF format supports the following compression types:

Compression Type Limitations
None No limitations.
Ccitt3 For 1-bit images only.
Ccitt4 For 1-bit images only.
CcittRle For 1-bit images only.
Jpeg Can be used only with those pixel formats which are supported by JPEG (non-extended and non-indexed grayscale, RGB, and CMYK images). To adjust JPEG quality, use Quality property.
Rle Has no limitations, but works better with indexed images.
Lzw No limitations.
Zip No limitations.

See Also

Reference