Class PaletteChunk
Parsed representation of an Aseprite Palette chunk.
Syntax
public class PaletteChunk : BaseChunk, IDisposable
Properties
chunkType
Declaration
public override ChunkTypes chunkType { get; }
Property Value
Overrides
entries
Array of palette entries.
Declaration
public ReadOnlyCollection<PaletteEntry> entries { get; }
Property Value
firstColorIndex
Index of the first color to change.
Declaration
public uint firstColorIndex { get; }
Property Value
lastColorIndex
Index of the last color to change.
Declaration
public uint lastColorIndex { get; }
Property Value
noOfEntries
Number of entries in the palette.
Declaration
public uint noOfEntries { get; }
Property Value
Methods
InternalRead(BinaryReader)
Declaration
protected override void InternalRead(BinaryReader reader)
Parameters
Overrides