我在画布上使用html5画布和绘制矩形,使用以下代码
function drawRectangle(mouseX,mouseY)
{
ctx.beginPath();
ctx.rect(25,25,100,100);
ctx.fill();
ctx.stroke();
}
我在画布上得到矩形,但问题是 在那个矩形内,多条线作为边界。我不想要那些线。 请建议我。
答案 0 :(得分:0)
为什么不使用fillRect?
function drawRectangle(mouseX,mouseY)
{
ctx.beginPath();
ctx.fillRect(25,25,100,100);
}