Skip to content
On this page

Home > @taiyuuki/utils > canvas_to_blob

canvas_to_blob() function

此函数将 HTML canvas 元素转换为 Blob 对象并返回一个 Promise。

Signature:

typescript
declare function canvas_to_blob(cvs: HTMLCanvasElement): Promise<Blob>;
declare function canvas_to_blob(cvs: HTMLCanvasElement): Promise<Blob>;

Parameters

ParameterTypeDescription
cvsHTMLCanvasElementHTMLCanvasElement - 这是我们要从中创建 blob 的画布元素。

Returns:

Promise<Blob>

函数 canvas_to_blob 返回一个解析为 Blob 对象的 Promise。

Released under the MIT License.