<画布>正确的路径 - 如何?画布>
我想知道如何绘制矩形的路径(就像如何使用 lineTo() )。
I'm wondering how can I draw a path of a rect (like how I can using lineTo()).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道如何绘制矩形的路径(就像如何使用 lineTo() )。
I'm wondering how can I draw a path of a rect (like how I can using lineTo()).
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我不明白这里的问题是什么。不是
rect
方法到底是做什么的?I don't understand what the problem here is. Doesn't the
rect
method do exactly that?值得注意的是, rect() 函数与 strokeRect() 和 fillRect() 函数不同。这两个函数立即在画布上绘制,无需调用 beginPath() 或 stroke()/fill() 。例如,这会在画布上绘制一个矩形:
context.fillStyle = 'red';
context.fillRect(5,5,100,100);
It's worth noting that the rect() function is different from the strokeRect() and fillRect() functions. These two functions draw on the canvas immediately without the need for beginPath() or stroke()/fill() calls. For example this draws a rectangle on to the canvas:
context.fillStyle = 'red';
context.fillRect(5,5,100,100);