Canvas--矩形

Posted 穿山甲到底说了什么

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Canvas--矩形相关的知识,希望对你有一定的参考价值。

Canvas提供了一个直接绘制矩形的方法:rect(x,y,width,height)

1 context.rect(50,50,100,100)
2 
3 context.lineWidth = 10
4 context.strokeStyle = \'#0091db\'
5 context.fillStyle = \'#00ff00\'
6 
7 context.stroke()
8 context.fill()

  绘制矩形的其它方法:fillRect(x,y,width,height)、strokeRect(x,y,width,height)

1 context.lineWidth = 10
2 context.strokeStyle = \'#0091db\'
3 
4 context.strokeRect(50,50,100,100)

1 context.lineWidth = 10
2 context.fillStyle = \'#00ff00\'
3 
4 context.fillRect(50,50,100,100)

以上是关于Canvas--矩形的主要内容,如果未能解决你的问题,请参考以下文章

canvas实现矩形画图效果

如何删除用 Canvas 创建的矩形?

android 画布区域,android:canvas绘制一个透明矩形并填充其余区域

html5中canvas通过js绘制圆角矩形

html5中canvas通过js绘制圆角矩形

canvas绘制圆角矩形