开发者

Create a buffer and work on it

开发者 https://www.devze.com 2023-01-04 00:13 出处:网络
Is it possible to create a buffer of arbitrary size and work on that just like on a canvas element? I would like to create a graphic (> 10\'000 x 10\'000 pixel) and use methods like drawImage() on th

Is it possible to create a buffer of arbitrary size and work on that just like on a canvas element?

I would like to create a graphic (> 10'000 x 10'000 pixel) and use methods like drawImage() on that. After everything is done a part should be copied over to the canvas element. createImageData() can make a buffer but there's no way to use metho开发者_StackOverflow社区ds like drawImage() on it.

Is there a way to achieve my needs without making an invisible canvas element?

Thank you!


Why not use a canvas element? It doesn't have to be "invisible" (as in "it's part of the page, but styled to not be visible")...just create a new canvas as described above, and simply don't append it to your document. Now you can do whatever you want with it, without worrying about having that extra hidden canvas on your actual page.


Have a look at document fragments. John Resig DOM DocumentFragments and MDC.

I'm not sure if it is cross-browser...maybe someone can clarify for me?


EDIT: don't know what I was thinking

Have you tried:

var canvas = document.createElement("canvas");
canvas....

containerElement.appendChild(canvas.cloneNode());
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号