I am trying to draw in a web worker using html5 canvas. The worker doesn't have access to the DOM so I can't draw on a canvas from the web worker. This other stack overflow question suggests I can manipulate the ImageData from the worker.

Am I limiting to performing raw pixel manipulation on the ImageData item or can I perform things like drawBezzierCurve() on it? Or maybe there is a library to manipulate this type of data.

link|improve this question

67% accept rate
Look at ie.microsoft.com/testdrive/Graphics/WorkerFountains/… which is a demo from Microsoft of something similar to what you want. – chuckj Feb 2 at 3:51
feedback

1 Answer

You cannot call any <canvas> functions from web workers currently. Also, pixel manipulation is limited because you most likely need to use postMessage() to push forth and back whole canvas data once, meaning a lot of data copying slowing down it.

This all sucks greatly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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