0
votes
0answers
86 views

Webworker canvas performance terrible

I'm trying to use webworkers to render parts of the frames for an animated mandelbrot zoomer, since there is a lot of calculating involved, and since this can be easily split up in blocks this should ...
1
vote
1answer
78 views

Spawning large numbers of WebWorkers in Chrome/Firefox

I'm writing a simple JavaScript application that generates a Mandlebrot set fractal in an HTML5 canvas element. The algorithm to generate the graphic is easily parallelizable, so I'm using WebWorkers ...
2
votes
1answer
194 views

canvas data to web worker

I'm trying to do some processing with webworker on image data from canvas. Solution, that I have right know, works quite ok, but there are still some visible lags when I do the processing (because ...
1
vote
1answer
103 views

Smart alternatives to using <canvas> methods inside a Web Worker?

I am attempting to improve the draw speed of this JS heatmap library: http://www.patrick-wied.at/static/heatmapjs/ With a view to getting animation to work. An abridged version of how it works- it ...
5
votes
3answers
280 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 ...
4
votes
2answers
891 views

JavaScript freezing/crashing in Chrome

This is the fiddle: http://jsfiddle.net/36mdt/ After about 10-20 seconds, the display starts to freeze randomly and shortly after crashes. I cannot reproduce this in Firefox. Profiling reveals ...
0
votes
1answer
323 views

Use Web Worker to getImageData from a file

Is it possible to decode the image data from a file in a Web Worker so that I can pass it to the main thread and use putImageData. This is presumably faster than just calling drawImage.
2
votes
1answer
560 views

Document-free canvas for Web Worker

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 ...
19
votes
2answers
4k views

Web Workers and Canvas

Are web workers allowed to access a canvas object?