Package net.sourceforge.jiu.codecs.tiff
Class TIFFFaxCodes
java.lang.Object
net.sourceforge.jiu.codecs.tiff.TIFFFaxCodes
Information to be used to decode and encode TIFF files in one of the
bilevel compression types Modified Huffman, CCITT Group 3 or CCITT Group 4.
- Since:
- 0.9.0
- Author:
- Marco Schmidt
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int[][][]
The code words and their meanings for black codes.static final int
Index of the code value in the int[] value pairs.static final int
Index of the code word in the int[] value pairs.static final int
Minimum code length in bits of black codes.static final int
Minimum code length in bits of white codes.static final int[][][]
The code words and their meanings for white codes. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
INDEX_CODE_WORD
public static final int INDEX_CODE_WORDIndex of the code word in the int[] value pairs.- See Also:
-
INDEX_CODE_VALUE
public static final int INDEX_CODE_VALUEIndex of the code value in the int[] value pairs.- See Also:
-
MIN_BLACK_CODE_SIZE
public static final int MIN_BLACK_CODE_SIZEMinimum code length in bits of black codes.- See Also:
-
MIN_WHITE_CODE_SIZE
public static final int MIN_WHITE_CODE_SIZEMinimum code length in bits of white codes.- See Also:
-
BLACK_CODES
public static final int[][][] BLACK_CODESThe code words and their meanings for black codes. In ascending order, starting at MIN_BLACK_CODE_SIZE bits, each int[][] object contains all the code word / code value pairs for one bit length. -
WHITE_CODES
public static final int[][][] WHITE_CODESThe code words and their meanings for white codes. In ascending order, starting at MIN_WHITE_CODE_SIZE bits, each int[][] object contains all the code word / code value pairs for one bit length.
-
-
Constructor Details
-
TIFFFaxCodes
public TIFFFaxCodes()
-