I have a canvas element on a page. I call canvas.toDataURL() and now have a handle on its image data.
Do I need to post this data to the server, have my server construct a file stream using that data, then set my document's location to the file stream returned? Seems like a lot of overhead when I have all my data client-side...