Interface MaskCreateFromOptions

interface MaskCreateFromOptions {
    data?: Uint8Array;
    height?: number;
    origin?: Point;
    width?: number;
}

Hierarchy

Properties

data?: Uint8Array

Typed array holding the mask data.

height?: number
origin?: Point

Origin of the image relative to a parent image.

Default

{row: 0, column: 0 }

width?: number