Languages
[Edit]
EN

JavaScript - translate drawing on canvas

0 points
Created by:
Blessing-D
574

In this article, we would like to show you how to translate drawing on canvas using JavaScript.

Quick solution:

var canvas = document.querySelector('#my-canvas');
var context = canvas.getContext('2d');
context.translate(50, -60);
// draw something

 

Practical example

In this example, we use translate() method that moves the canvas and its origin x and y units by given value.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>

    #my-canvas { border: 1px solid gray; }

  </style>
</head>
<body>
  <canvas id="my-canvas" width="300" height="200"></canvas>
  <script>

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

    function drawSquare(x, y, side, color) {
        context.beginPath();
        context.rect(x, y, side, side); // rect(x, y, width, height)
        context.strokeStyle = color;
        context.stroke();
    }

    drawSquare(50, 80, 100, 'green');

    context.translate(50, -60);
    drawSquare(50, 80, 100, 'red');

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

result:

JavaScript - translate drawing on canvas - result
JavaScript - translate drawing on canvas - result

References

  1. CanvasRenderingContext2D.translate() - Web APIs | MDN

Alternative titles

  1. JavaScript - translate drawing on HTML canvas element
  2. JavaScript - translate image on HTML canvas element
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