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?
|
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?
| |||||||
feedback
|
|
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:
Tested in Opera 10.0. You can also try .toDataURL("image/jpeg") | |||
feedback
|