closePath() Method - Javascript Canvas Reference

Javascript examples for Canvas Reference:closePath

Description

The closePath() method creates a path from the current point back to the starting point.

JavaScript syntax

context.closePath();

Example

Use red as the fill color:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<canvas id="myCanvas" width="300" height="250" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>

<script>

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();/*from www.  java 2s . co m*/
ctx.moveTo(20, 20);
ctx.lineTo(20, 100);
ctx.lineTo(70, 100);
ctx.closePath();
ctx.stroke();
ctx.fillStyle = "red";
ctx.fill();

</script>

</body>
</html>

Related Tutorials