Class PngChunkText

    • Field Detail

      • LOGGER

        private static final java.util.logging.Logger LOGGER
      • keyword

        private final java.lang.String keyword
      • text

        private final java.lang.String text
    • Constructor Detail

      • PngChunkText

        public PngChunkText​(int length,
                            int chunkType,
                            int crc,
                            byte[] bytes)
                     throws ImagingException
        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.
        java.lang.NullPointerException - if bytes is null.