Drawing Images on Canvas in HTML5

Canvas Images

Let’s have some knowledge of the canvas images by understanding its function for drawing the images. To draw a canvas image, the drawImage() method is used that requires an images object and a destination point. The destination point means the top-left corner of the images relative to the top-left corner of the canvas on which the image is to be drawn.

There are the following three variants of this method.

  • drawImage(image, dx, dy).
  • drawImage(image, dx, dy, dw, dh)
  • drawImage(image, sx, sy, sw, sh, dx, dy, dw, dh,).

First we should know about all the parameters given in the methods, so we can understand the use of all the parameters and can easily play with the images.

The parameter "images" is the image that is to be drawn.

The parameters "dx" and "dy" are known as "destinationX" and "destinationY" respectively and determine where the image is to be drawn on the canvas.

The parameters "dw" and "dh" are known as "destinationWidth" and "destinationHeight" respectively and determine the scale size of the image.

The parameters "sx" and "sy" are known as "sourceX" and "sourceY" respectively and determine the where in the source images to start copying the rectangle of the images onto the canvas.

The parameters "sw" and "sh" are known as "sourceWidth" and "sourceHeight" respectively and determine the scaling (extent of copying of width and height) of the source image.

As we all know, the drawImage() method needs an object, so first we should create an image object and should wait for it to load by applying the  window.onload() function before the initiation of the drawImages() method.

Now let’s move to see the example of first variant, imageDraw(image, dx, dy).

Example : Drawing and loading

  1. <html>  
  2.     <body>  
  3.         <p>Image being used:</p>  
  4.         <img id="skullash" width="250" height="210"    
  5. src="C:\Users\dddd\Desktop\cigarette-smoke-skull.jpg" alt="The Skull Ash">  
  6.         <p>Canvas Image:</p>  
  7.         <canvas id="smokeCanvas" width="325" height="225"    
  8. style="border:3px solid red;">  
  9.         < script > window.onload = function ashSkull() {  
  10.             var newCanvas = document.getElementById("smokeCanvas");  
  11.             var context = newCanvas.getContext("2d");  
  12.             var image = document.getElementById("skullash");  
  13.             context.drawImage(image, 0, 0);  
  14.             }   
  15.         </script>  
  16.         </canvas>  
  17.     </body>  
  18. </html>   
Output



We can observe the image drawn on the canvas (with a Red border).

Next we are going to discuss the second variant as in the following:
  1. drawImage(image, dx, dy, dw, dh)  
Example : Scaling of image

Here we will change the image and the method in JavaScript for scaling the image.
  1. context.drawImage(image, 90, 60, 180, 150);  
Here is the output after scaling.

Output



We can see the scale size and the position of the image onto the canvas.

Now to draw the section of the image using the next variant method as in the following:
  1. drawImage(image, sx, sy, sw, sh, dx, dy, dw, dh,)  
Example : Drawing section of image

By changing the method in JavaScript:
  1. context.drawImage(image, 90, 90, 130, 110, 0, 0, 250, 200);  
Output



Another section by:
  1. context.drawImage(image, 0, 0, 100, 250, 70, 70, 200, 180);   
Output



The preceding output is the two different sections of the given image with its scale size as well as position of the image on the canvas.

Thank you, keep learning and sharing.

Next Recommended Readings