Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML 캔버스 stroke() 메서드

<시간/>

HTML 캔버스의 stroke() 메서드는 경로를 그리는 데 사용됩니다. 이 경로는 moveTo() 및 lineTo() 메서드로 그려집니다. 요소를 사용하면 JavaScript를 사용하여 웹 페이지에 그래픽을 그릴 수 있습니다. 모든 캔버스에는 캔버스의 높이와 너비, 즉 각각 높이와 너비를 설명하는 두 가지 요소가 있습니다.

다음은 구문입니다 -

ctx.stroke()

이제 캔버스의 stroke() 메서드를 구현하는 예를 살펴보겠습니다 -

예시

<!DOCTYPE html>
<html>
<body>
<canvas id="newCanvas" width="450" height="350" style="border:2px solid red;">
</canvas>
<script>
   var c = document.getElementById("newCanvas");
   var ctx = c.getContext("2d");
   ctx.beginPath();
   ctx.moveTo(100, 200);
   ctx.lineTo(100, 100);
   ctx.strokeStyle = "blue";
   ctx.stroke();
   ctx.beginPath();
   ctx.moveTo(30, 30);
   ctx.lineTo(20, 100);
   ctx.lineTo(70, 100);
   ctx.strokeStyle = "orange";
   ctx.stroke();
</script>
</body>
</html>

출력

HTML 캔버스 stroke() 메서드