PNG.EmbeddedData

Stores ancillary data embedded into PNG files. Handling these are not vital for opening PNG files, but available for various purposes. Please be aware that certain readers might have issues with nonstandard chunks

Constructors

this
this(DataPosition pos, char[4] identifier, ubyte[] data)

Creates an instance of this class.

Members

Enums

DataPosition
enum DataPosition

Describes where this data stream should go within the file. This describe the exact location, and configured when loading from PNG files. WithinIDAT will result in dumping all of them before the last theoretical IDAT chunk.

Variables

data
ubyte[] data;

Contains the data of this chunk

identifier
char[4] identifier;

Identifies the data of this chunk

pos
DataPosition pos;

Describes the exact location of

Meta