image-js
Version:
Image processing and manipulation in JavaScript
11 lines • 548 B
TypeScript
import { Image } from '../Image.js';
import type { Mask } from '../Mask.js';
/**
* Blend the given pixel with the pixel at the specified location in the image.
* @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 setBlendedPixel(image: Image | Mask, column: number, row: number, color?: number[]): void;
//# sourceMappingURL=setBlendedPixel.d.ts.map