收藏
回答

Canvas绘制图片无效

框架类型 问题类型 操作系统 工具版本
小程序 Bug Windows 2.9.2


<canvas type="2d" style="width: 300; height: 200;" canvas-id="firstCanvas"></canvas>




let ctx = wx.createCanvasContext('firstCanvas')

wx.downloadFile({

url: 'https://www.baidu.com/img/bd_logo1.png',

success: res => {

console.log(res)

if (res.statusCode === 200) {

ctx.drawImage(res.tempFilePath, 10, 10, 150, 100)

ctx.draw()

}

}

})


回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容
问题标签