This documentation is archived and is not being maintained.
TiffCompressOption Enumeration
Visual Studio 2010
Specifies the possible compression schemes for Tagged Image File Format (TIFF) bitmap images.
Assembly: PresentationCore (in PresentationCore.dll)
| Member name | Description | |
|---|---|---|
| Default | The TiffBitmapEncoder encoder attempts to save the bitmap with the best possible compression schema. | |
| None | The Tagged Image File Format (TIFF) image is not compressed. | |
| Ccitt3 | The CCITT3 compression schema is used. | |
| Ccitt4 | The CCITT4 compression schema is used. | |
| Lzw | The LZW compression schema is used. | |
| Rle | The RLE compression schema is used. | |
| Zip | Zip compression schema is used. |
The Ccitt3, Ccitt4, and Rle require that the PixelFormat value be set to BlackWhite. Setting the PixelFormat to any other value resets the Compression property value to Default.
The following example demonstrates how to use the Compression property.
FileStream^ stream = gcnew FileStream("new.tif", FileMode::Create); TiffBitmapEncoder^ encoder = gcnew TiffBitmapEncoder(); TextBlock^ myTextBlock = gcnew TextBlock(); myTextBlock->Text = "Codec Author is: " + encoder->CodecInfo->Author->ToString(); encoder->Compression = TiffCompressOption::Zip; encoder->Frames->Add(BitmapFrame::Create(image)); encoder->Save(stream);
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: