获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
这个问题到现在还没解决吗?
fail canvas is empty代码: var res = wx.getSystemInfoSync(); const ctx = wx.createCanvasContext('myCanvas'); ctx.drawImage('../../resource/img/dlt.jpeg', 0, 0, res.windowWidth, res.windowHeight); ctx.draw(); wx.canvasToTempFilePath({ x: 100, y: 200, width: 50, height: 50, destWidth: 100, destHeight: 100, canvasId: 'myCanvas', success: function (res) { console.log(res.tempFilePath) }, fail: function (e) { console.log(e); } }) 图片可以画出来,但是保存的时候输出:fail canvas is empty,这是什么原因?
2018-10-26