This question already has an answer here:
I have some div tags containing charts rendered by javascript. I want to export them in an image format by the press of a button. I don't know if it's possible to capture a div tag as an image using javascript ! so there i'm asking for tips and hints. Thanks in advance.
You can create an image using the canvas element. If your charts are rendered using HTML elements you need to draw that HTML onto the canvas. Then you can use toDataURL on the canvas to get the B64-encoded image data.
There was a dissussion here: html5: copy a canvas to image and back Also there is a project http://www.nihilogic.dk/labs/canvas2image/
This is not possible using only JavaScript.
JavaScript has no access on a PC to save files, nor can it convert the DOM to a image format.
u might try phantomjs, http://phantomjs.org/, although I have'nt used it personally, but it is widely used for screen captures