Languages
[Edit]
EN

JavaScript - draw image on canvas element

3 points
Created by:
Hayley-Mooney
677

Quick solution:

// drawing image at position 50x50 px with size 140x140 px
context.drawImage(image, 50, 50, 140, 140);

 

Using JavaScript canvas element context it is possible to draw image in following way.

1. drawImage() method example

With this approach HTMLImageElement type handle is necessary.

Avaialble approaches to get element handle are:

  1. with document.querySelector(), docuemnt.getElementById() or other similar method,
  2. with document.createElement('img') execution,
  3. with new Image() execution.

Following example shows how to use new Image() approach:

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>
    
    #my-canvas { border: 1px solid gray; }
    
  </style>
</head>
<body>
  <canvas id="my-canvas" width="200" height="200"></canvas>
  <script>

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

    var image = new Image();

    image.onload = function() {
       context.drawImage(image, 50, 50, 140, 140);
    };
    
    image.onerror = function() {
      	context.fillStyle = 'red';
      	context.font = '16px Arial';
       	context.fillText('Image loading error!', 10, 30);
    };

    image.src = 'https://dirask.com/static/bucket/1574890428058-BZOQxN2D3p--image.png';

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

Used resources:

Used image with canvas.
Used image with canvas.
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