Pixel Data JS - v0.28.0
    Preparing search index...

    Interface PixelRect

    Configuration for pixel manipulation operations. Designed to be used by spreading a Rect object ({x, y, w, h}) directly.

    interface PixelRect {
        h?: number;
        w?: number;
        x?: number;
        y?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    h?: number

    The height of the region in the destination buffer.

    Source height.
    
    w?: number

    The width of the region in the destination buffer.

    Source width.
    
    x?: number

    The starting X coordinate in the destination buffer.

    0
    
    y?: number

    The starting Y coordinate in the destination buffer.

    0