public enum TiffExpectedFormat extends Enum<TiffExpectedFormat>
The expected tiff file format.
| Enum Constant and Description |
|---|
Default
The default tiff format is no compression with B/W 1 bit per pixel only format.
|
TiffCcitRle
The tiff CCITT RLE encoding.
|
TiffCcittFax3
The tiff CCITT FAX3 encoding.
|
TiffCcittFax4
The tiff CCITT FAX4 encoding.
|
TiffDeflateBw
The tiff having deflate compression and B/W 1 bit per pixel only format.
|
TiffDeflateRgb
The tiff having deflate compression and RGB color format.
|
TiffDeflateRgba
The tiff having deflate compression and RGBA color format.
|
TiffJpegRgb
The tiff having Jpeg compression and RGB color format.
|
TiffJpegYCbCr
The tiff having Jpeg compression and YCBCR color format.
|
TiffLzwBw
The tiff having LZW compression and B/W 1 bit per pixel only format.
|
TiffLzwCmyk
The tiff LZW cmyk
|
TiffLzwRgb
The tiff having LZW compression and RGB color format.
|
TiffLzwRgba
The tiff having LZW compression and RGBA with transparency color format.
|
TiffNoCompressionBw
The uncompressed tiff and B/W 1 bit per pixel only format.
|
TiffNoCompressionRgb
The uncompressed tiff and RGB color format.
|
TiffNoCompressionRgba
The uncompressed tiff and RGBA with transparency color format.
|
| Modifier and Type | Method and Description |
|---|---|
static TiffExpectedFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TiffExpectedFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TiffExpectedFormat Default
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.
public static final TiffExpectedFormat TiffLzwBw
The tiff having LZW compression and B/W 1 bit per pixel only format.
public static final TiffExpectedFormat TiffLzwRgb
The tiff having LZW compression and RGB color format.
public static final TiffExpectedFormat TiffLzwRgba
The tiff having LZW compression and RGBA with transparency color format.
public static final TiffExpectedFormat TiffLzwCmyk
The tiff LZW cmyk
public static final TiffExpectedFormat TiffCcittFax3
The tiff CCITT FAX3 encoding. B/W 1 bit per pixel only supported for that scheme.
public static final TiffExpectedFormat TiffCcittFax4
The tiff CCITT FAX4 encoding. B/W 1 bit per pixel only supported for that scheme.
public static final TiffExpectedFormat TiffDeflateBw
The tiff having deflate compression and B/W 1 bit per pixel only format.
public static final TiffExpectedFormat TiffDeflateRgb
The tiff having deflate compression and RGB color format.
public static final TiffExpectedFormat TiffDeflateRgba
The tiff having deflate compression and RGBA color format.
public static final TiffExpectedFormat TiffCcitRle
The tiff CCITT RLE encoding. B/W 1 bit per pixel only supported for that scheme.
public static final TiffExpectedFormat TiffJpegRgb
The tiff having Jpeg compression and RGB color format.
public static final TiffExpectedFormat TiffJpegYCbCr
The tiff having Jpeg compression and YCBCR color format.
public static final TiffExpectedFormat TiffNoCompressionBw
The uncompressed tiff and B/W 1 bit per pixel only format.
public static final TiffExpectedFormat TiffNoCompressionRgb
The uncompressed tiff and RGB color format.
public static final TiffExpectedFormat TiffNoCompressionRgba
The uncompressed tiff and RGBA with transparency color format.
public static TiffExpectedFormat[] values()
for (TiffExpectedFormat c : TiffExpectedFormat.values()) System.out.println(c);
public static TiffExpectedFormat valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.