Skip to content
On this page

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

ParameterTypeDescription
imgHTMLImageElement一个 HTMLImageElement 对象,表示要转换为画布的图像。
sizeImageSize(Optional) size 参数是一个可选对象,用于指定所需的画布宽度和高度。如果未提供,则默认为输入图像的自然宽度和高度。

Returns:

HTMLCanvasElement

具有指定大小的画布元素和在其上绘制的图像。

Released under the MIT License.