Open In App

HTML canvas fillRect() Method

The fillRect() method is used to fill the rectangle using the given color. The default color of the fillRect() method is black. Syntax:

context.fillRect( x, y, width, height )

Parameters: This method accepts four parameters as mentioned above and described below:



Example 1: This example uses fillRect() method to create rectangle and filled with default color (black). 




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML canvas fillRect() Method
    </title>
</head>
<body>
    <canvas id="GFG" width="500" height="300"></canvas>
      
    <script>
        var x = document.getElementById("GFG");
        var context = x.getContext("2d");
        context.fillRect(50, 50, 350, 200);
        context.stroke();
    </script
  
</body>
</html>

Output: Example 2: This example uses fillRect() method to create rectangle and filled with ve color (green). 






<!DOCTYPE html>
<html>
<head>
    <title>
        HTML canvas fillRect() Method
    </title>
</head>
<body>
    <canvas id="GFG" width="500" height="300"></canvas>
      
    <script>
        var x = document.getElementById("GFG");
        var context = x.getContext("2d");
        context.fillStyle = "green";
        context.fillRect(50, 50, 350, 200);
        context.stroke();
    </script
  
</body>
</html>

Output: Supported Browsers: The browsers supported by fillRect() method are listed below:


Article Tags :