Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 30, 2022 05:03 pm GMT

How to add Images to HTML Canvas

When working with HTML Canvas, sometimes it's desirable to add images. In this article, let's look at how you can easily add images (like .jpeg and .png) to your HTML canvas.

If you're brand new to HTML Canvas, start with our "Getting Started with HTML Canvas" guide.

How to add Images to HTML Canvas

Adding images to HTML canvas depends upon the Image() constructor, which lets us interact with images in Javascript. For this guide, I'll be using an image from Pexels by figenkokol.

To start, create your HTML canvas element as you normally would:

<canvas id="canvas" width="300" height="300"></canvas>

Now, let's look at the HTML. We first create a new Image(), and then set its url (i.e. src) to the image we want to show:

let canvas = document.getElementById('canvas');let ctx = canvas.getContext('2d');// Create our imagelet newImage = new Image();newImage.src = 'https://fjolt.com/images/misc/202203281.png'// When it loadsnewImage.onload = () => {    // Draw the image onto the context    ctx.drawImage(newImage, 0, 0, 250, 208);}

When the image loads (newImage.onload), then we draw the image onto our canvas. To do that, we use ctx.drawImage(). The syntax is shown below.

ctx.drawImage(image, x, y, width, height)

If declared like this, ctx.drawImage() only has 5 arguments:

  • image - the image we want to use, generated from our new Image() constructor.
  • x - the x position on the canvas for the top left corner of the image.
  • y - the y position on the canvas for the top left corner of the image.
  • width - the width of the image. If left blank, the original image width is used.
  • height - the height of the image. If left blank, the original image height is used.

The above code will produce the following canvas:
Adding Images to HTML Canvas

Now we've successfully drawn an image onto an HTML canvas element, using just Javascript.

Cropping Images in HTML Canvas

Using ctx.drawImage function, we can also crop images. This version of the function accepts a slightly different syntax, but lets us crop an image as we see fit.

ctx.drawImage(image, cx, cy, sw, sh, x, y, width, height)
If declared like this, ctx.drawImage() has 9 arguments:

  • image - the image we want to use, generated from our new Image() constructor.
  • cx - this is how far from the top left we want to crop the image by. So if it is 50, the image will be cropped 50 pixels from the left hand side.
  • cy - this is how far from the top we want to crop the image by. So if it is 50, the image will be cropped 50 pixels from the top side.
  • sw - this is how big we want the image to be from the point of cx. So if 100, the image will continue for 100px from cx, and then be cropped at that point.
  • sh - this is how big we want the image to be from the point of ch. So if 100, the image will continue for 100px from ch, and then be cropped at that point.
  • x - the x position on the canvas for the top left corner of the image.
  • y - the y position on the canvas for the top left corner of the image.
  • width - the width of the image. If left blank, the original image width is used.
  • height - the height of the image. If left blank, the original image height is used.

If you prefer the visual, here is how cropping works with this method:
How to crop images in HTML Canvas

How cropping works with HTML Canvas

Let's look at an example. Nothing really changes, except for the syntax of ctx.drawImage.

let canvas = document.getElementById('canvas');let ctx = canvas.getContext('2d');// Create our imagelet newImage = new Image();newImage.src = 'https://fjolt.com/images/misc/202203281.png'// When it loadsnewImage.onload = () => {    // Draw the image onto the context with cropping    ctx2.drawImage(newImage, 20, 20, 500, 500, 0, 0, 250, 208);}

Note: the cropping effect will use the original image size - so if your image is 1000px wide, as this one is, we have to crop it according to those dimensions. We can then use x, y, width, height to draw the image onto any size we like.

The above, will produce the following canvas:
A cropped image with HTML Canvas


Original Link: https://dev.to/smpnjn/how-to-add-images-to-html-canvas-1gm

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To