Skip to content
On this page

Home > @taiyuuki/utils > image_to_blob

image_to_blob() function

此函数使用画布将 HTML 图像元素转换为 blob 对象。

Signature:

typescript
declare function image_to_blob(img: HTMLImageElement): Promise<Blob>;
declare function image_to_blob(img: HTMLImageElement): Promise<Blob>;

Parameters

ParameterTypeDescription
imgHTMLImageElementHTMLImageElement - HTML 文档中需要转换为 Blob 对象的图像元素。

Returns:

Promise<Blob>

函数 image_to_blob 返回解析为 Blob 对象的 Promise。

Released under the MIT License.