Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
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
Modifier and Type | Field and 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. |
Constructor and Description |
---|
JPEGHuffmanTable(short[] lengths,
short[] values)
Creates a Huffman table and initializes it. |
Modifier and Type | Method and Description |
---|---|
short[] |
getLengths()
Returns an array of short s containing the number of values
for each length in the Huffman table. |
short[] |
getValues()
Returns an array of short s containing the values arranged
by increasing length of their corresponding codes. |
String |
toString()
Returns a String representing this Huffman table. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final JPEGHuffmanTable StdDCLuminance
public static final JPEGHuffmanTable StdDCChrominance
public static final JPEGHuffmanTable StdACLuminance
public static final JPEGHuffmanTable StdACChrominance
Constructor Detail |
---|
public JPEGHuffmanTable(short[] lengths, short[] values)
lengths
- an array of short
s where lengths[k]
is equal to the number of values with corresponding codes of
length k + 1
bits.values
- an array of shorts containing the values in
order of increasing code length.IllegalArgumentException
- if lengths
or
values
are null, the length of lengths
is
greater than 16, the length of values
is greater than 256,
if any value in lengths
or values
is less
than zero, or if the arrays do not describe a valid Huffman table.Method Detail |
---|
public short[] getLengths()
short
s containing the number of values
for each length in the Huffman table. The returned array is a copy.
short
array where array[k-1]
is equal to the number of values in the table of length k
.getValues()
public short[] getValues()
short
s 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.
short
array of values.getLengths()
public String toString()
String
representing this Huffman table.
toString
in class Object
String
representing this Huffman table.
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.