@kayahr/stackblur

    Interface ImageDataLike

    Minimal interface for an ImageData compatible object.

    interface ImageDataLike {
        data: Uint8Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike>;
        height: number;
        width: number;
    }
    Index

    Properties

    Properties

    data: Uint8Array<ArrayBufferLike> | Uint8ClampedArray<ArrayBufferLike>

    The RGBA pixel data.

    height: number

    The height in pixels.

    width: number

    The width in pixels.

    MMNEPVFCICPMFPCPTTAAATR