Now since the amazon has enabled CORS I was wondering if this is possible.
CORS
Can the html canvas data (on client browser) be converted to a <
canvas
The easiest way to save canvas is to convert it to base64:
canvas.toDataURL();
or you can set image type via argument:
canvas.toDataURL("image/png"); canvas.toDataURL("image/jpeg"); // etc
Also watch this lib: http://www.nihilogic.dk/labs/canvas2image/