TiffCompression

TiffCompression enumeration

Specifies what type of compression to apply when saving pages to the TIFF format.

public enum TiffCompression

Values

NameValueDescription
None1Specifies no compression.
Rle2Specifies the RLE compression scheme.
Ccitt33Specifies the CCITT3 compression scheme.
Ccitt44Specifies the CCITT4 compression scheme.
Lzw5Specifies the LZW compression scheme.

Examples

Shows how to render in TIFF format by using RLE compression mode.

var project = new Project(DataDir + "Project2.mpp");

var options = new ImageSaveOptions(SaveFileFormat.Tiff);

// Save the project with Rle compression
options.TiffCompression = TiffCompression.Rle;
project.Save(OutDir + "RenderMultipageTIFF_comp_rle_out.tif", options);

See Also