This documentation is for the old version. Go to the latest Graphics Mill docs

TiffFrame.Compression Property

Gets/sets TIFF compression type.

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

Syntax

Visual Basic
Public Property Compression As CompressionType
C#
public CompressionType Compression { get; set; }

Property Value

Value that specifies necessary TIFF compression type.

Remarks

TIFF format supports the following compression types:

Compression Type Limitations
None compression type. No limitations.
Ccitt3 compression type. For 1-bit images only.
Ccitt4 compression type. For 1-bit images only.
CcittRle compression type. For 1-bit images only.
Jpeg compression type. 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 compression type. Has no limitations, but works better with indexed images.
Lzw compression type. No limitations.
Zip compression type. No limitations.

Default value is None.

See Also

Reference