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 class
TIFFWriterCompressionOptions.Companion
-
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 TIFFWriterCompressionOptions
valueOf(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.
-
-
-
-