image-js
Version:
Image processing and manipulation in JavaScript
9 lines • 307 B
TypeScript
import { Image } from '../Image.js';
import type { Mask } from '../Mask.js';
/**
* Creates a BMP buffer from a mask.
* @param image - The mask instance.
* @returns The buffer.
*/
export declare function encodeBmp(image: Image | Mask): Uint8Array<ArrayBufferLike>;
//# sourceMappingURL=encodeBmp.d.ts.map