Enum TiffExpectedFormat

TiffExpectedFormat enumeration

The expected tiff file format.

public enum TiffExpectedFormat

Values

NameValueDescription
Default0The 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.
TiffLzwBw1The tiff having LZW compression and B/W 1 bit per pixel only format.
TiffLzwRgb2The tiff having LZW compression and RGB color format.
TiffLzwRgba3The tiff having LZW compression and RGBA with transparency color format.
TiffLzwCmyk4The tiff LZW cmyk
TiffCcittFax35The tiff CCITT FAX3 encoding. B/W 1 bit per pixel only supported for that scheme.
TiffCcittFax46The tiff CCITT FAX4 encoding. B/W 1 bit per pixel only supported for that scheme.
TiffDeflateBw7The tiff having deflate compression and B/W 1 bit per pixel only format.
TiffDeflateRgb8The tiff having deflate compression and RGB color format.
TiffDeflateRgba9The tiff having deflate compression and RGBA color format.
TiffCcitRle10The tiff CCITT RLE encoding. B/W 1 bit per pixel only supported for that scheme.
TiffJpegRgb11The tiff having Jpeg compression and RGB color format.
TiffJpegYCbCr12The tiff having Jpeg compression and YCBCR color format.
TiffNoCompressionBw13The uncompressed tiff and B/W 1 bit per pixel only format.
TiffNoCompressionRgb14The uncompressed tiff and RGB color format.
TiffNoCompressionRgba15The uncompressed tiff and RGBA with transparency color format.

See Also