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

HTML5 캔버스에서 타원을 그리는 방법은 무엇입니까?


다음 코드를 실행하여 HTML5 캔버스에 타원을 그릴 수 있습니다. −

예시

<!DOCTYPE HTML>
<html>
   <head>
   </head>
   <body>
      <canvas id="newCanvas" width="450" height="300"></canvas>
      <script>
         // canvas

         var c = document.getElementById('newCanvas');
         var context = c.getContext('2d');
         var cX = 0;
         var cY = 0;
         var radius = 40;
         
         context.save();
         context.translate(c.width / 2, c.height / 2);
         context.scale(2, 1);
         context.beginPath();
         context.arc(cX, cY, radius, 0, 2 * Math.PI, false);
         context.restore();
         context.fillStyle = '#000000';
         context.fill();
         context.lineWidth = 2;
         context.strokeStyle = 'yellow';
         context.stroke();
      </script>
   </body>
</html>

출력

HTML5 캔버스에서 타원을 그리는 방법은 무엇입니까?