java.lang.ObjectA 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.javax.imageio.plugins.jpeg.JPEGHuffmanTable
For more information about the operation of the standard JPEG plug-in, see the JPEG metadata format specification and usage notes
| Field Summary | ||
|---|---|---|
| public static final JPEGHuffmanTable | StdDCLuminance | The standard DC luminance Huffman table. |
| public static final JPEGHuffmanTable | StdDCChrominance | The standard DC chrominance Huffman table. |
| public static final JPEGHuffmanTable | StdACLuminance | The standard AC luminance Huffman table. |
| public static final JPEGHuffmanTable | StdACChrominance | The standard AC chrominance Huffman table. |
| Constructor: |
|---|
|
| Method from javax.imageio.plugins.jpeg.JPEGHuffmanTable Summary: |
|---|
| getLengths, getValues, toString |
| Methods from java.lang.Object: |
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.imageio.plugins.jpeg.JPEGHuffmanTable Detail: |
|---|
shorts containing the number of values
for each length in the Huffman table. The returned array is a copy. |
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. |
|