uniapp选择图片并转为base64格式
# 安装
npm i image-tools --save
1
# 基本使用
import { pathToBase64 } from 'image-tools';
......
// 选择图片
async imgSelect(){
uni.chooseImage({
count:1,
sizeType: ['original'],
sourceType: ['album'],
success: async (res) => {
this.image = res.tempFilePaths[0]
const base64Image = await pathToBase64(this.image)
});
},
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
上次更新: 2023/09/22, 16:54:32