Skip to content

convertImageToBase64

图片转base64

API

Return

参数说明类型
success是否转换成功boolean
data转换成功后的值string,ArrayBuffer , null
message转换成功或失败的原因string

Options

参数说明类型默认值
file传入的文件File

Example

js
import { convertImageToBase64 } from 'ranuts';

convertImageToBase64(file).then((res) => {
  console.log(result);
});

Released under the MIT License.