5
votes
3answers
281 views

Render RGBA to PNG in pure JavaScript?

Let's say I have a canvas element, and I need to turn the image on the canvas into a PNG or JPEG. Of course, I can simply use canvas.toDataURL, but the problem is that I need to do this a twenty times ...
0
votes
1answer
192 views

how to make an html5 game multiplayer--online [closed]

I am wondering where to start--I was pointed in the direction of web workers but I am not exactly sure how that works, I was hoping someone could give me advice or tell me how to start it off ...
1
vote
2answers
554 views

Image previews and web workers

Is it possible to use the filereader api within a web worker to load images i.e. for previews/thumbails, therefore preventing the main ui thread from blocking. Something like this but wrapping the ...
1
vote
2answers
236 views

Drawing in workers

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 ...
2
votes
3answers
969 views

Web worker dealing with imageData working with Firefox but not Chrome

When I run code that deals with imageData being passed to a web worker and then back, then Firefox works great but Chrome gives "Uncaught Error: DATA_CLONE_ERR: DOM Exception 25" Searching google ...
5
votes
2answers
2k views

Using Web Workers for drawing using native canvas functions

It's possible to send a CanvasPixelArray obtained via getImageData to a worker script, and let the worker script manipulate the pixels in its background thread, and eventually post the manipulated ...