TiffCompressionMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the compression mode used for TIFF images.
public enum class TiffCompressionMode
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class TiffCompressionMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum TiffCompressionMode
var value = Windows.Graphics.Imaging.TiffCompressionMode.automatic
Public Enum TiffCompressionMode
- Inheritance
-
TiffCompressionMode
- Attributes
Windows requirements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|
Fields
Name | Value | Description |
---|---|---|
Automatic | 0 | The compression will be automatically selected. |
None | 1 | No compression will be applied. |
Ccitt3 | 2 | CCITT3 compression will be applied. |
Ccitt4 | 3 | CCITT4compression will be applied. |
Lzw | 4 | LZW compression will be applied. |
Rle | 5 | RLE compression will be applied. |
Zip | 6 | ZIP compression will be applied. |
LzwhDifferencing | 7 | LZWH Differencing compression will be applied. |
Remarks
The TIFF compression modes only effect compression efficiency and do not affect image quality.