Languages
[Edit]
EN

JavaScript - how to clear canvas?

12 points
Created by:
Sujay
512

Simple solution:

// clear from x=0, y=0 on area width * height
context.clearRect(0, 0, canvas.width, canvas.height);

 

Using JavaScript it is possible to clear canvas in following way.

1. clearRect method example

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>
    
    #my-canvas { border: 1px solid gray; }
    
  </style>
</head>
<body>
  <button onclick="drawCircle()">Draw circle!</button>
  <button onclick="clearCanvas()">Clear canvas!</button>
  <br /><br />
  <canvas id="my-canvas" width="300" height="300"></canvas>
  <script>

    var canvas = document.querySelector('#my-canvas');
    var context = canvas.getContext('2d');

    var xCenter = canvas.width / 2;
    var yCenter = canvas.height / 2;
    var circleRadius = 110;
    
    function drawCircle() {
        context.fillStyle = '#ff0000';
        context.beginPath();
        context.arc(xCenter, yCenter , circleRadius, 0, 2 * Math.PI);
        context.fill();
    }

    function clearCanvas() {
        context.clearRect(0, 0, canvas.width, canvas.height);
    }

    drawCircle();

  </script>
</body>
</html>

See also

  1. JavaScript - how to clear canvas with specific color?

Alternative titles

  1. JavaScript - how to clean canvas?
  2. JavaScript - how to clean rect?
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - HTML5 canvas tutorial

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join