Is there any implementation of canvas without document.createElement('canvas')?

I want to work with canvas in web worker but i can't pass canvas data to it via worker.postMessage(), because canvas is HTMLElement.

var canvas = document.createElement('canvas'), worker = new Worker('canvas.js');
worker.postMessage(canvas.getData());

Also i don't want to pass canvas's ImageData to web worker because i don't want to implement context2d.drawImage() manually.

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Nope. Sorry, ImageData is your only recourse here.

link|improve this answer
do you know any implementations of context.drawImage() with getImageData()/putImageData()? – Dmitry Sorin Aug 9 '11 at 18:04
What do you mean exactly? putImageData() is essentially a drawImage() for ImageData. putImageData(myImageData, 0, 0); draws myImageData starting at 0,0. – Simon Sarris Aug 9 '11 at 20:41
Right, my question isn't clear enough. Say I have the source image 200x200 and the target image 100x100. I want to copy the source image over the target. With 2d-context it can be done with drawImage(). Are there any implementations of drawImage() with getImageData() + putImageData()? – Dmitry Sorin Aug 10 '11 at 14:17
You mean you want to put 200x200 ImageData on a 100x100 canvas? You'll have to make a 200x200 Canvas in memory, putImageData onto it, then drawImage the 200x200 Canvas onto the 100x100 canvas. If that doesnt make sense I can make an example. – Simon Sarris Aug 10 '11 at 17:38
No-no-no! This should be done in worker, so can't use drawImage(). I am talking about implementing drawImage() algorythm with getImageData/putImageData – Dmitry Sorin Aug 10 '11 at 18:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.