UNPKG
@mt-kit/utils
Version:
latest (1.4.0)
1.4.0
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
一个常用的工具库
github.com/Not-have/micro-tools/tree/main/packages-utils
Not-have/micro-tools
@mt-kit/utils
/
dist
/
image-base64-to-blob
/
index.d.ts
7 lines
(6 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * 将 base64 编码的图像数据转换为 Blob 对象 *
@param
base64Buf base64Buf 是包含 base64 编码的图像数据的字符串 *
@returns
返回一个 Blob 对象,该对象表示解码后的图像数据 */
export
default
function
imageBase64ToBlob
(
base64Buf:
string
):
Blob
;