Package-level declarations

Types

Link copied to clipboard
open class PngChunk(val type: PngChunkType, val bytes: ByteArray, val crc: Int)
Link copied to clipboard
class PngChunkExif(val bytes: ByteArray, val crc: Int) : PngChunk
Link copied to clipboard
class PngChunkIhdr(val bytes: ByteArray, val crc: Int) : PngChunk
Link copied to clipboard
class PngChunkItxt(val bytes: ByteArray, val crc: Int) : PngTextChunk
Link copied to clipboard
class PngChunkText(chunkType: PngChunkType, val bytes: ByteArray, val crc: Int) : PngTextChunk
Link copied to clipboard
class PngChunkZtxt(val bytes: ByteArray, val crc: Int) : PngTextChunk
Link copied to clipboard
abstract class PngTextChunk(chunkType: PngChunkType, val bytes: ByteArray, val crc: Int) : PngChunk