Home > @taiyuuki/utils > download_image
download_image() function
该函数通过其 URL 下载图像并使用生成或提供的名称保存它。
Signature:
typescript
declare function download_image(img: HTMLImageElement, imageName?: string): void;
declare function download_image(img: HTMLImageElement, imageName?: string): void;
Parameters
Parameter | Type | Description |
---|---|---|
img | HTMLImageElement | 一个 HTMLImageElement 对象,表示需要下载的图像。 |
imageName | string | (Optional) imageName 参数是一个字符串,表示将要下载的图像文件的名称。如果未提供名称,将生成一个随机 UUID 字符串作为文件名。 |
Returns:
void