最新版 canvas.draw 无法绘制本地临时图片
wx.downloadFile({
url: imgUrl, // 一个网络图片
success ({ tempFilePath }) {
// 将临时图片地址绘制到画布上
ctx.drawImage(tempFilePath, 0, 0, 100, 100)
ctx.draw(
false
, () => {
// 这个回调一直没执行,控制台没有任何抛错
debugger
})
}
})
10 回复