Enum TIFFWriterCompressionOptions
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum TIFFWriterCompressionOptions extends Enum<TIFFWriterCompressionOptions>
TIFF Compression algorithms
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classTIFFWriterCompressionOptions.Companion
-
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 TIFFWriterCompressionOptionsvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<TIFFWriterCompressionOptions>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final TIFFWriterCompressionOptions 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<TIFFWriterCompressionOptions> 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.
-
-
-
-