Enum TIFFImageWriterCompressionOptions
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum TIFFImageWriterCompressionOptions extends Enum<TIFFImageWriterCompressionOptions>
TIFF Compression algorithms
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPRESSION_NONESupported with binarized images. Supported with colored images.
COMPRESSION_CCITTRLESupported with binarized images. Is not supported with colored images.
COMPRESSION_CCITTFAX3Supported with binarized images. Is not supported with colored images.
COMPRESSION_CCITT_T4Supported with binarized images. Is not supported with colored images.
COMPRESSION_CCITTFAX4Supported with binarized images. Is not supported with colored images.
COMPRESSION_CCITT_T6Supported with binarized images. Is not supported with colored images.
COMPRESSION_LZWSupported with binarized images. Supported with colored images.
COMPRESSION_CCITTRLEWSupported with binarized images. Is not supported with colored images.
COMPRESSION_PACKBITSSupported with binarized images. Supported with colored images.
COMPRESSION_DEFLATESupported with binarized images. Supported with colored images.
COMPRESSION_ADOBE_DEFLATESupported with binarized images. Supported with colored images.
-
Method Summary
Modifier and Type Method Description final TIFFImageWriterCompressionOptionsvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<TIFFImageWriterCompressionOptions>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetId()-
-
Method Detail
-
valueOf
final TIFFImageWriterCompressionOptions valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<TIFFImageWriterCompressionOptions> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-