Hay guys, i've made a simple drawing application using the canvas tag. However i would like to export the data to JSON so it can be saved.

How does one go about this?

link|improve this question

I don't think there is any particular JSON format corresponding to what you draw on the canvas. – user181548 Oct 15 '09 at 11:35
Is there anyway i can export the canvas data, with the option to be able to import it again at a later date. – dotty Oct 15 '09 at 11:37
Of course you can but as far as I know there is no particular format for doing that. You probably need to invent your own format. – user181548 Oct 15 '09 at 11:41
feedback

1 Answer

up vote 7 down vote accepted

What you need is the toDataUrl(type) method. It will return a data: URI – a plain string which you can easily put in a JSON structure or do what you want with. Example:

var canvas = document.createElement('canvas');
canvas.width=8;
canvas.height=8;
var ctx = canvas.getContext('2d');
/* draw on ctx */
alert(canvas.toDataURL());
/* result: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAADUlEQVR42mNgGAUgAAABCAABXbcZDQAAAABJRU5ErkJggg== */

Tested in Opera 10.0. You can also try .toDataURL("image/jpeg")

link|improve this answer
Android 2.x doesn't seem to have support for toDataURL: code.google.com/p/android/issues/detail?id=7901 – Petteri Hietavirta May 14 '11 at 7:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.