最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Combining two images on one canvas in HTML5 - Stack Overflow

programmeradmin1浏览0评论

I'm working with the HTML5 canvas element. Let's say I have 2 ImageData objects that I want to bine to be able to put on one canvas. Lets assume that I don't care how these images bine. Both ImageData objects have the exact same pixel count and shape.

What's the best way to bine the two images?

I figure that I can write a for loop and iterate over the ImageData array and manually bine and set every rgba value per pixel, but I'm wondering if there's a better way? I need this operation to happen as quickly as possible.

Thanks in advance.

I'm working with the HTML5 canvas element. Let's say I have 2 ImageData objects that I want to bine to be able to put on one canvas. Lets assume that I don't care how these images bine. Both ImageData objects have the exact same pixel count and shape.

What's the best way to bine the two images?

I figure that I can write a for loop and iterate over the ImageData array and manually bine and set every rgba value per pixel, but I'm wondering if there's a better way? I need this operation to happen as quickly as possible.

Thanks in advance.

Share Improve this question asked Oct 7, 2010 at 2:46 ctown4lifectown4life 9751 gold badge13 silver badges28 bronze badges 2
  • What does "bine" mean? You want one dropped over the other so you can't see it? You want one superimposed on top of the other? You want them stacked end-to-end? – Chuck Commented Oct 7, 2010 at 2:54
  • I want to drop one on top of the other. Most of the pixels in these images are pletely transparent. So if image1 has a black circle on the left half of it, and image2 has a square on the right half of it, I'd like to bine them so I get 1 image with a circle on the left and a square on the right. – ctown4life Commented Oct 7, 2010 at 3:05
Add a ment  | 

1 Answer 1

Reset to default 7

If you're simply looking to superimpose one image on top of another, you probably want to do something like this:

ctx.drawImage(image1, x, y);
// adjust globalAlpha as needed, or skip if the image has its own transparency
ctx.globalAlpha = 0.5;
ctx.drawImage(image2, x, y);

OR, depending on the specific effect you're after:

ctx.drawImage(image1, x, y);
ctx.globalCompositeOperation = "lighten"; // many other possibilities here
ctx.drawImage(image2, x, y);

This will probably be faster than drawing pixel-by-pixel through the get/putImageData methods, though by how much is browser-dependent.

发布评论

评论列表(0)

  1. 暂无评论