fast-png
    Preparing search index...

    Interface DecodedPng

    interface DecodedPng {
        channels: number;
        data: PngDataArray;
        depth: BitDepth;
        height: number;
        iccEmbeddedProfile?: IccEmbeddedProfile;
        palette?: IndexedColors;
        resolution?: PngResolution;
        text: Record<string, string>;
        transparency?: Uint16Array<ArrayBufferLike>;
        width: number;
    }
    Index

    Properties

    channels: number
    depth: BitDepth
    height: number
    iccEmbeddedProfile?: IccEmbeddedProfile
    palette?: IndexedColors
    resolution?: PngResolution
    text: Record<string, string>
    transparency?: Uint16Array<ArrayBufferLike>
    width: number