image-js
Version:
Image processing and manipulation in JavaScript
11 lines • 601 B
TypeScript
import type { Image } from '../Image.js';
import type { Mask } from '../Mask.js';
/**
* Blend the given pixel with the pixel at the specified location in the image if the pixel is in image's bounds.
* @param image - The image with which to blend.
* @param column - Column of the target pixel.
* @param row - Row of the target pixel.
* @param color - Color with which to blend the image pixel. Default: `Opaque black`.
*/
export declare function setBlendedVisiblePixel(image: Image | Mask, column: number, row: number, color?: number[]): void;
//# sourceMappingURL=setBlendedVisiblePixel.d.ts.map