Skip to content
On this page

Home > @taiyuuki/utils > blob_to_date_URI

blob_to_date_URI() function

此函数将 Blob 对象转换为数据 URI 字符串或 ArrayBuffer。

Signature:

typescript
declare function blob_to_date_URI(blob: Blob): Promise<string | ArrayBuffer>;
declare function blob_to_date_URI(blob: Blob): Promise<string | ArrayBuffer>;

Parameters

ParameterTypeDescription
blobBlobblob 参数是一个 Blob 对象,它表示不可变的原始数据的类文件对象。它可用于表示不一定采用 JavaScript 原生格式的数据。在这种情况下,该函数采用 Blob 对象并将其转换为数据 URI 字符串或 ArrayBuffer

Returns:

Promise<string | ArrayBuffer>

解析为字符串或 ArrayBuffer 的 Promise,具体取决于将提供的 Blob 作为数据 URL 读取的结果。

Released under the MIT License.