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_NONE
Supported with binarized images. Supported with colored images.
COMPRESSION_CCITTRLE
Supported with binarized images. Is not supported with colored images.
COMPRESSION_CCITTFAX3
Supported with binarized images. Is not supported with colored images.
COMPRESSION_CCITT_T4
Supported with binarized images. Is not supported with colored images.
COMPRESSION_CCITTFAX4
Supported with binarized images. Is not supported with colored images.
COMPRESSION_CCITT_T6
Supported with binarized images. Is not supported with colored images.
COMPRESSION_LZW
Supported with binarized images. Supported with colored images.
COMPRESSION_CCITTRLEW
Supported with binarized images. Is not supported with colored images.
COMPRESSION_PACKBITS
Supported with binarized images. Supported with colored images.
COMPRESSION_DEFLATE
Supported with binarized images. Supported with colored images.
COMPRESSION_ADOBE_DEFLATE
Supported with binarized images. Supported with colored images.
-
Method Summary
Modifier and Type Method Description final TIFFImageWriterCompressionOptions
valueOf(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 Integer
getId()
-
-
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.
-
-
-
-