Class PngChunkItxt
java.lang.Object
org.apache.commons.imaging.common.BinaryFileParser
org.apache.commons.imaging.formats.png.chunks.PngChunk
org.apache.commons.imaging.formats.png.chunks.AbstractPngTextChunk
org.apache.commons.imaging.formats.png.chunks.PngChunkItxt
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionPngChunkItxt(int length, int chunkType, int crc, byte[] bytes) Constructs a new instance. -
Method Summary
Methods inherited from class PngChunk
getBytes, getChunkType, getCrc, getDataStream, getLength, getPropertyBits, isAncillary, isPrivate, isReserved, isSafeToCopyMethods inherited from class BinaryFileParser
debugNumber, debugNumber, getByteOrder, setByteOrder
-
Field Details
-
keyword
-
text
-
languageTag
The language tag defined in [RFC-3066] indicates the human language used by the translated keyword and the text. Unlike the keyword, the language tag is case-insensitive. It is an ISO 646.IRV:1991 [ISO 646] string consisting of hyphen-separated words of 1-8 alphanumeric characters each (for example cn, en-uk, no-bok, x-klingon, x-KlInGoN). If the first word is two or three letters long, it is an ISO language code [ISO-639]. If the language tag is empty, the language is unspecified. -
translatedKeyword
-
-
Constructor Details
-
PngChunkItxt
public PngChunkItxt(int length, int chunkType, int crc, byte[] bytes) throws ImagingException, IOException Constructs a new instance.- Parameters:
length- chunk length.chunkType- chunk type.crc- CRC computed over the chunk type and chunk data (but not the length).bytes- chunk data bytes.- Throws:
ImagingException- Thrown on a parsing error.IOException- Thrown on reading error.NullPointerException- ifbytesis null.
-
-
Method Details
-
getContents
- Specified by:
getContentsin classAbstractPngTextChunk
-
getKeyword
- Specified by:
getKeywordin classAbstractPngTextChunk- Returns:
- Gets the keyword.
-
getText
- Specified by:
getTextin classAbstractPngTextChunk- Returns:
- Gets the text.
-
getTranslatedKeyword
-