Interface CopyToOptions<OutType>

interface CopyToOptions {
    origin?: Point;
    out?: OutType;
}

Type Parameters

  • OutType

Properties

Properties

origin?: Point

Origin for the crop relative to the top-left corner of the image.

Default

{row: 0, column: 0}

out?: OutType

Image to which to output.