TiffExpectedFormat Enumeration |
The expected tiff file format.
Namespace:
Aspose.CAD.FileFormats.Tiff.Enums
Assembly:
Aspose.CAD (in Aspose.CAD.dll) Version: 20.8
Syntaxpublic enum TiffExpectedFormat
Public Enumeration TiffExpectedFormat
public enum class TiffExpectedFormat
Members
| Member name | Value | Description |
---|
| Default | 0 |
The default tiff format is no compression with B/W 1 bit per pixel only format. You can also use this setting to get an empty options and initialize with your tags or other settings.
|
| TiffLzwBw | 1 |
The tiff having LZW compression and B/W 1 bit per pixel only format.
|
| TiffLzwRgb | 2 |
The tiff having LZW compression and RGB color format.
|
| TiffLzwRgba | 3 |
The tiff having LZW compression and RGBA with transparency color format.
|
| TiffLzwCmyk | 4 |
The tiff LZW cmyk
|
| TiffCcittFax3 | 5 |
The tiff CCITT FAX3 encoding. B/W 1 bit per pixel only supported for that scheme.
|
| TiffCcittFax4 | 6 |
The tiff CCITT FAX4 encoding. B/W 1 bit per pixel only supported for that scheme.
|
| TiffDeflateBw | 7 |
The tiff having deflate compression and B/W 1 bit per pixel only format.
|
| TiffDeflateRgb | 8 |
The tiff having deflate compression and RGB color format.
|
| TiffDeflateRgba | 9 |
The tiff having deflate compression and RGBA color format.
|
| TiffCcitRle | 10 |
The tiff CCITT RLE encoding. B/W 1 bit per pixel only supported for that scheme.
|
| TiffJpegRgb | 11 |
The tiff having Jpeg compression and RGB color format.
|
| TiffJpegYCbCr | 12 |
The tiff having Jpeg compression and YCBCR color format.
|
| TiffNoCompressionBw | 13 |
The uncompressed tiff and B/W 1 bit per pixel only format.
|
| TiffNoCompressionRgb | 14 |
The uncompressed tiff and RGB color format.
|
| TiffNoCompressionRgba | 15 |
The uncompressed tiff and RGBA with transparency color format.
|
See Also