Home  >  Article  >  Web Front-end  >  How to draw ellipse in HTML5 canvas?

How to draw ellipse in HTML5 canvas?

WBOY
WBOYforward
2023-08-31 17:41:051131browse

You can try running the following code to draw an oval in HTML5 canvas -

Example

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

         var c = document.getElementById(&#39;newCanvas&#39;);
         var context = c.getContext(&#39;2d&#39;);
         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 = &#39;#000000&#39;;
         context.fill();
         context.lineWidth = 2;
         context.strokeStyle = &#39;yellow&#39;;
         context.stroke();
      </script>
   </body>
</html>

Output

How to draw ellipse in HTML5 canvas?##

The above is the detailed content of How to draw ellipse in HTML5 canvas?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete