image-js
Version:
Image processing and manipulation in JavaScript
38 lines (34 loc) • 1.07 kB
text/typescript
import type { Mask } from '../Mask.js';
import type { Point } from '../utils/geometry/points.js';
import { maskToOutputMask } from '../utils/getOutputImage.js';
export interface DrawPolylineOnMaskOptions {
/**
* Origin of the rectangle relative to a parent image (top-left corner).
* @default `{row: 0, column: 0}`
*/
origin?: Point;
/**
* Mask to which the resulting image has to be put.
*/
out?: Mask;
}
/**
* Draw a polyline defined by an array of points on an image.
* @param mask - Mask to process.
* @param points - Polyline array of points.
* @param options - Draw polyline options.
* @returns The mask with the polyline drawing.
*/
export function drawPolylineOnMask(
mask: Mask,
points: Point[],
options: DrawPolylineOnMaskOptions = {},
): Mask {
const newImage = maskToOutputMask(mask, options, { clone: true });
for (let i = 0; i < points.length - 1; i++) {
const from = points[i];
const to = points[i + 1];
newImage.drawLine(from, to, { out: newImage, origin: options.origin });
}
return newImage;
}