ImageJS
    Preparing search index...

    Interface DrawMarkerOptions

    interface DrawMarkerOptions {
        fillColor?: number[];
        out?: Image;
        shape?: "circle" | "triangle" | "cross" | "square";
        size?: number;
        strokeColor?: number[];
    }
    Index

    Properties

    fillColor?: number[]

    Circle border color - An array of numerical values, one for each channel of the image. If less values are defined than there are channels in the image, the remaining channels will be set to 0.

    out?: Image

    Image to which the resulting image has to be put.

    shape?: "circle" | "triangle" | "cross" | "square"

    Marker shape.

    'cross'

    size?: number

    Marker size, Odd number greater than 1.

    1

    strokeColor?: number[]

    Circle border color - An array of numerical values, one for each channel of the image. If less values are defined than there are channels in the image, the remaining channels will be set to 0.

    A black pixel.