@kayahr/wastelib
    Preparing search index...

    Interface ImageDataLike

    Minimal interface for image data.

    interface ImageDataLike {
        data: Uint8ClampedArray;
        height: number;
        width: number;
    }
    Index

    Properties

    Properties

    RGBA pixel data.

    height: number

    Height of the image data in pixels.

    width: number

    Width of the image data in pixels.