const ctx = wx.createCanvasContext('myCanvas')
const pattern = ctx.createPattern('/path/to/image', 'repeat-x')
ctx.setStrokeStyle(pattern); // 应用在strokeStyle上面无效
ctx.stroke();
ctx.draw()
ctx.setFillStyle(pattern); // 应用在strokeStyle上面确实有效的
ctx.fillRect(0, 0, 300, 150)
ctx.draw()
setStrokeStyle和setFillStyle接受的参数类型,在文档中是一样的
为什么setStrokeStyle传值为pattern时不起作用呢?