ctx.createPattern无效
// ctx.createPattern 设置无效
const pattern = ctx.createPattern('/path/to/image', 'repeat-x')
wx.downloadFile({
url: 'https://example.com/audio/123', //仅为示例,并非真实的资源
success (res) {
// 只要服务器有响应数据,就会把响应内容写入文件并进入 success 回调,业务需要自行判断是否下载到了想要的内容
if (res.statusCode === 200) {
const ctx = wx.createCanvasContext('myCanvas')
const pattern = ctx.createPattern( res.tempFilePath, 'repeat-x')
ctx.fillStyle = pattern
ctx.fillRect(0, 0, 300, 150)
ctx.draw()
}
}
})