Providing you have an array of colors and you want to fill a canvas with its content, the fastest way I'm aware of is:
var my_array = /* already have it */;
var img_data = ctx.createImageData(canvas.width, canvas.height);
for (var i=0; i<canvas.width*canvas.height; ++i)
img_data[i] = my_array[i];
ctx.putImageData(img_data,0,0);
This seems too slow as I'm copying the entire array twice! One to make the img_data
and another to put it on the canvas. Isn't there a way to simply plug the original my_array
into the element?
You should directly make use of a typed array instead of a javascript array for your main computations, so you won't have to convert later :
or
The access is just the same as a standard js array :
This way you just have to copy this array to update the screen :
Notice that you can retrieve the buffer of this array, and have another view on this array.
This way you can also have, say, a 32 bit view to perform copy operations 4 bytes at a time.
If you are using this 32 view, remember that the endianness of each system might be different, which leads to load either ABGR ( PC / mac ) or RGBA in the array. This changes nothing for a copy, but might be annoying in some cases (:-)).
Don't forget also you can copy an array buffer with the ArrayBuffer slice function :
You can know the endianness with this small function :
you can reverse a 32 bit ( ABCD -> DCBA ) with the following :