Skip to content
On this page

Home > @taiyuuki/utils > image_to_data_URI

image_to_data_URI() function

此函数将 HTML 图像元素转换为数据 URI。

Signature:

typescript
declare function image_to_data_URI(img: HTMLImageElement, type?: string): string;
declare function image_to_data_URI(img: HTMLImageElement, type?: string): string;

Parameters

ParameterTypeDescription
imgHTMLImageElement一个 HTMLImageElement 对象,表示需要转换为数据 URI 的图像。
typestring(Optional) type 参数是图像的 MIME 类型,例如 PNG图像为“image/png”或 PNG 图像为“image/jpeg”, 如果未提供,它将默认为 “image/png” 的值。

Returns:

string

作为参数传递的图像的数据 URI(统一资源标识符)。

Released under the MIT License.