png-compressor
    Preparing search index...

    Interface IDecodeContext

    interface IDecodeContext {
        header: IPngHeaderDetails;
        image?: IImage32 | IImage64;
        info: string[];
        metadata: PngMetadata[];
        options: IDecodePngOptions;
        palette?: IPngPaletteInternal;
        parsedChunks: Set<string>;
        rawChunks?: IPngChunk[];
        view: DataView;
        warnings: DecodeWarning[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    image?: IImage32 | IImage64
    info: string[]
    metadata: PngMetadata[]
    parsedChunks: Set<string>

    A Set of chunks already parsed, this can be used to enforce chunk ordering and preventing multiple when only one is allowed.

    rawChunks?: IPngChunk[]
    view: DataView
    warnings: DecodeWarning[]