Class PngChunk
java.lang.Object
org.apache.commons.imaging.common.BinaryFileParser
org.apache.commons.imaging.formats.png.chunks.PngChunk
- Direct Known Subclasses:
AbstractPngTextChunk, PngChunkGama, PngChunkIccp, PngChunkIdat, PngChunkIhdr, PngChunkPhys, PngChunkPlte, PngChunkScal
A PNG image is composed of several chunks. This is the base class for the chunks, used by the parser.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final booleanprivate final byte[]private final intprivate final intprivate final booleanprivate final intprivate final boolean[]private final booleanprivate final boolean -
Constructor Summary
ConstructorsConstructorDescriptionPngChunk(int length, int chunkType, int crc, byte[] bytes) Constructs a new instance. -
Method Summary
Modifier and TypeMethodDescriptionbyte[]getBytes()Gets a copy of the chunk bytes.intintgetCrc()protected ByteArrayInputStreamGets a newByteArrayInputStreamfor the chunk bytes.intboolean[]Gets a copy of the chunk property bits.booleanbooleanbooleanbooleanMethods inherited from class BinaryFileParser
debugNumber, debugNumber, getByteOrder, setByteOrder
-
Field Details
-
length
private final int length -
chunkType
private final int chunkType -
crc
private final int crc -
bytes
private final byte[] bytes -
propertyBits
private final boolean[] propertyBits -
ancillary
private final boolean ancillary -
isPrivate
private final boolean isPrivate -
reserved
private final boolean reserved -
safeToCopy
private final boolean safeToCopy
-
-
Constructor Details
-
PngChunk
public PngChunk(int length, int chunkType, int crc, byte[] bytes) 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:
NullPointerException- ifbytesis null.
-
-
Method Details
-
getBytes
public byte[] getBytes()Gets a copy of the chunk bytes.- Returns:
- the chunk bytes
-
getChunkType
public int getChunkType() -
getCrc
public int getCrc() -
getDataStream
Gets a newByteArrayInputStreamfor the chunk bytes.The caller is responsible for closing the resource.
- Returns:
- a ByteArrayInputStream for the chunk bytes
-
getLength
public int getLength() -
getPropertyBits
public boolean[] getPropertyBits()Gets a copy of the chunk property bits.- Returns:
- the chunk property bits
-
isAncillary
public boolean isAncillary() -
isPrivate
public boolean isPrivate() -
isReserved
public boolean isReserved() -
isSafeToCopy
public boolean isSafeToCopy()
-