# CanvasContext.setFillStyle(Color color)
设置填充色。
# 参数
# Color color
填充的颜色,默认颜色为 black。
# 代码示例
const ctx = qa.createCanvasContext('myCanvas')
ctx.setFillStyle('red')
ctx.fillRect(10, 10, 150, 75)
ctx.draw()
1
2
3
4
2
3
4
←
→
在线客服