Skip to content
On this page

Home > @taiyuuki/utils > data_URI_to_blob

data_URI_to_blob() function

此函数将数据 URI 转换为 blob 对象。

Signature:

typescript
declare function data_URI_to_blob(dataURI: string, mimeType?: string): Blob;
declare function data_URI_to_blob(dataURI: string, mimeType?: string): Blob;

Parameters

ParameterTypeDescription
dataURIstring表示数据 URI 的字符串,其中包括以 base64 格式编码的文件的数据和元数据。
mimeTypestring(Optional) dataURI 的 MIME 类型,指定 URI 中表示的数据类型。它是一个可选参数,如果未提供,该函数会尝试从 dataURI 本身中提取它。

Returns:

Blob

从 dataURI 字符串输入创建的 Blob 对象。 Blob 对象包含指定 MIME 类型的二进制数据。

Released under the MIT License.