微信小程序API 绘图setStrokeStyle(设置线条样式)


setStrokeStyle


定义

设置边框颜色。

Tip: 如果没有设置 fillStyle,默认颜色为 black

参数

参数类型定义
colorColor \Gradient Object填充色

例子

const ctx = wx.createCanvasContext('myCanvas')
ctx.setStrokeStyle('red')
ctx.strokeRect(10, 10, 150, 75)
ctx.draw()

201612241138086846.png