PixelPlaceJS-new - v3.4.3
    Preparing search index...

    Type Alias ImageData

    Represents image data consisting of width, height, and pixel colors.

    type ImageData = {
        height: number;
        pixels: (Color | null)[][];
        width: number;
    }
    Index

    Properties

    Properties

    height: number

    The height of the image.

    pixels: (Color | null)[][]

    The two-dimensional array of pixel colors. Read with data.pixels[x][y]

    width: number

    The width of the image.