png-compressor
    Preparing search index...

    Interface IPngPalette

    A png image's core palette. This must be present if the image's color type is 3 (indexed).

    interface IPngPalette {
        size: number;
        getRgb(colorIndex: number): Uint8Array;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    size: number

    The number of entries in the palette.

    Methods