On this page
Class JPEGHuffmanTable
- java.lang.Object
-
- javax.imageio.plugins.jpeg.JPEGHuffmanTable
public class JPEGHuffmanTable
extends Object
A class encapsulating a single JPEG Huffman table. Fields are provided for the "standard" tables taken from Annex K of the JPEG specification. These are the tables used as defaults.
For more information about the operation of the standard JPEG plug-in, see the JPEG metadata format specification and usage notes
Fields
| Modifier and Type | Field | Description |
|---|---|---|
static JPEGHuffmanTable |
StdACChrominance |
The standard AC chrominance Huffman table. |
static JPEGHuffmanTable |
StdACLuminance |
The standard AC luminance Huffman table. |
static JPEGHuffmanTable |
StdDCChrominance |
The standard DC chrominance Huffman table. |
static JPEGHuffmanTable |
StdDCLuminance |
The standard DC luminance Huffman table. |
Constructors
| Constructor | Description |
|---|---|
JPEGHuffmanTable(short[] lengths, short[] values) |
Creates a Huffman table and initializes it. |
Methods
| Modifier and Type | Method | Description |
|---|---|---|
short[] |
getLengths() |
Returns an array of |
short[] |
getValues() |
Returns an array of |
String |
toString() |
Returns a |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Fields
StdDCLuminance
public static final JPEGHuffmanTable StdDCLuminance
The standard DC luminance Huffman table.
StdDCChrominance
public static final JPEGHuffmanTable StdDCChrominance
The standard DC chrominance Huffman table.
StdACLuminance
public static final JPEGHuffmanTable StdACLuminance
The standard AC luminance Huffman table.
StdACChrominance
public static final JPEGHuffmanTable StdACChrominance
The standard AC chrominance Huffman table.
Constructors
JPEGHuffmanTable
public JPEGHuffmanTable(short[] lengths,
short[] values)
Creates a Huffman table and initializes it. The input arrays are copied. The arrays must describe a possible Huffman table. For example, 3 codes cannot be expressed with a single bit.
- Parameters:
lengths- an array ofshorts wherelengths[k]is equal to the number of values with corresponding codes of lengthk + 1bits.values- an array of shorts containing the values in order of increasing code length.- Throws:
IllegalArgumentException- iflengthsorvaluesare null, the length oflengthsis greater than 16, the length ofvaluesis greater than 256, if any value inlengthsorvaluesis less than zero, or if the arrays do not describe a valid Huffman table.
Methods
getLengths
public short[] getLengths()
Returns an array of shorts containing the number of values for each length in the Huffman table. The returned array is a copy.
- Returns:
-
a
shortarray wherearray[k-1]is equal to the number of values in the table of lengthk. - See Also:
-
getValues()
getValues
public short[] getValues()
Returns an array of shorts containing the values arranged by increasing length of their corresponding codes. The interpretation of the array is dependent on the values returned from getLengths. The returned array is a copy.
- Returns:
-
a
shortarray of values. - See Also:
-
getLengths()
toString
public String toString()
Returns a String representing this Huffman table.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/imageio/plugins/jpeg/JPEGHuffmanTable.html