Skip to content
On this page

Home > @taiyuuki/utils > download_canvas

download_canvas() function

此函数将画布元素下载为具有默认名称或指定名称的 PNG 图像。

Signature:

typescript
declare function download_canvas(cvs: HTMLCanvasElement, imageName?: string): void;
declare function download_canvas(cvs: HTMLCanvasElement, imageName?: string): void;

Parameters

ParameterTypeDescription
cvsHTMLCanvasElementHTMLCanvasElement - 这是要作为图像下载的画布元素。
imageNamestring(Optional) imageName 是一个字符串参数,表示下载的图像文件的名称。如果没有提供名称,将生成一个随机的 UUID(通用唯一标识符)字符串作为文件名。

Returns:

void

Released under the MIT License.