- 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
-
-
Field Summary
Fields 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 Summary
Constructors Constructor and Description JPEGHuffmanTable(short[] lengths, short[] values)
Creates a Huffman table and initializes it.
-
Method Summary
Methods Modifier and Type Method and Description short[]
getLengths()
Returns an array ofshort
s containing the number of values for each length in the Huffman table.short[]
getValues()
Returns an array ofshort
s containing the values arranged by increasing length of their corresponding codes.String
toString()
Returns aString
representing this Huffman table.
-
-
-
Field Detail
-
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.
-
-
Constructor Detail
-
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 ofshort
s wherelengths[k]
is equal to the number of values with corresponding codes of lengthk + 1
bits.values
- an array of shorts containing the values in order of increasing code length.- Throws:
IllegalArgumentException
- iflengths
orvalues
are null, the length oflengths
is greater than 16, the length ofvalues
is greater than 256, if any value inlengths
orvalues
is less than zero, or if the arrays do not describe a valid Huffman table.
-
-
Method Detail
-
getLengths
public short[] getLengths()
Returns an array ofshort
s containing the number of values for each length in the Huffman table. The returned array is a copy.- Returns:
- a
short
array 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 ofshort
s containing the values arranged by increasing length of their corresponding codes. The interpretation of the array is dependent on the values returned fromgetLengths
. The returned array is a copy.- Returns:
- a
short
array of values. - See Also:
getLengths()
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/imageio/plugins/jpeg/jpeghuffmantable.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.