gpt4 book ai didi

javascript - 如果使用 javascript 超出 Canvas 范围,如何剪出形状?

转载 作者:行者123 更新时间:2023-11-29 18:55:29 25 4
gpt4 key购买 nike

我想创建一个圆并在它超出另一个形状时切掉它的一部分。

例如,如果圆的一半在正方形外面,切掉外面的所有东西,但不要切掉里面的东西。像这个片段,除了广场外的部分是隐藏的。我宁愿避免屏蔽它,因为它会出现在覆盖整个屏幕的另一个 Canvas 之上。

代码

var canvas = document.getElementById("canvas"),
ctx = canvas.getContext("2d");
ctx.rect(20,20,100,100);
ctx.stroke();
ctx.closePath();
ctx.beginPath();
ctx.arc(70, 90, 60, 0, Math.PI * 2, false)
ctx.stroke();
ctx.restore();
<html>
<body>
<canvas id="canvas"></canvas>
</body>
</html>

最佳答案

你可以像这样clip()圆圈;

var canvas = document.getElementById("canvas"),
ctx = canvas.getContext("2d");
ctx.rect(20,20,100,100);
ctx.stroke();
ctx.closePath();
ctx.clip(); // clip circle
ctx.beginPath();
ctx.arc(70, 90, 60, 0, Math.PI * 2, false)
ctx.stroke();
ctx.restore();
<html>
<body>
<canvas id="canvas"></canvas>
</body>
</html>

关于javascript - 如果使用 javascript 超出 Canvas 范围,如何剪出形状?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49622031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com