收藏
回答

小程序插件开发 Canvas draw 无法绘图

问题类型 插件 AppID 插件版本号 AppID 微信版本 基础库版本
Bug 隐藏 dev 隐藏 2.6.1

拍照想把路径转为base64,但是canvas调用draw的回调进不去,无法绘图

takePhoto: function() {
  var that = this
  that.ctx.takePhoto({
    quality: 'low',
    success: (res) => {
      var temp = res.tempImagePath;
      const cts = wx.createCanvasContext('photos')
      cts.drawImage(temp, 0, 0, 300, 200)
      cts.draw(true, function(e) {
        console.log("draw");//进不去
 
      })
    }
  })
},


最后一次编辑于  2019-03-07
回答关注问题邀请回答
收藏
登录 后发表内容