ImageJS
    Preparing search index...

    Interface DrawMarkerOptions

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

    Properties

    color?: number[]

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

    A black pixel.
    
    filled?: boolean

    Set marker as filled.

    false

    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