Home > @taiyuuki/utils > image_to_canvas
image_to_canvas() function
此函数将 HTML 图像元素转换为具有指定大小的画布元素。
Signature:
typescript
declare function image_to_canvas(img: HTMLImageElement, size?: ImageSize): HTMLCanvasElement;
declare function image_to_canvas(img: HTMLImageElement, size?: ImageSize): HTMLCanvasElement;
Parameters
Parameter | Type | Description |
---|---|---|
img | HTMLImageElement | 一个 HTMLImageElement 对象,表示要转换为画布的图像。 |
size | ImageSize | (Optional) size 参数是一个可选对象,用于指定所需的画布宽度和高度。如果未提供,则默认为输入图像的自然宽度和高度。 |
Returns:
HTMLCanvasElement
具有指定大小的画布元素和在其上绘制的图像。