微信小程序-图片转base64

比较简单,直接上代码

wx.chooseImage({
     success: function(res) {
       console.log(res.tempFilePaths[0])
//关键是下面这几行代码 ,传给接口一个虚拟路径,重点是设置encoding为base64
         wx.getFileSystemManager().readFile({
         filePath: res.tempFilePaths[0],
         encoding:"base64",
         success: function (data){
           console.log(data)//返回base64编码结果,但是图片的话没有data:image/png
         }
       })
//
     },

API地址:https://developers.weixin.qq.com/miniprogram/dev/api/file/FileSystemManager.readFile.html

你可能感兴趣的:(微信小程序-图片转base64)