Interface DrawCircleOnImageOptions

interface DrawCircleOnImageOptions {
    color?: number[];
    fill?: number[];
    out?: Image;
}

Properties

Properties

color?: number[]

Circle border color array of N elements (e.g. R, G, B or G, A), N being the number of channels.

Default

A black pixel.
fill?: number[]

Circle fill color array of N elements (e.g. R, G, B or G, A), N being the number of channels.

out?: Image

Image to which the resulting image has to be put.