Can you serialize/deserialize a canvas object in javascript?
|
2
|
|
|
|
|
|
Besides the [Edited to account for asynchronous loading (suggested by olliej).]
If I remember correctly, some older versions of Safari, and maybe Opera didn't support |
||||||
|
|
|
You can get direct pixel access with canvas.getImageData() and .putImageData(). You can also serialize images to a data URL with canvas.toDataURL() for posting to a server. This only works in newer browsers. |
||
|
|
