# CanvasContext.rect(number x, number y, number width, number height)

创建一个矩形路径。需要用 fill 或者 stroke 方法将矩形真正的画到 canvas

# 参数

# number x

矩形路径左上角的横坐标

# number y

矩形路径左上角的纵坐标

# number width

矩形路径的宽度

# number height

矩形路径的高度

# 示例代码

const ctx = qa.createCanvasContext('myCanvas')
ctx.rect(10, 10, 150, 75)
ctx.setFillStyle('red')
ctx.fill()
ctx.draw()
1
2
3
4
5

在线客服