Hacker News new | ask | show | jobs
by shared4you 4840 days ago
How do you do that? I right-clicked on some graph, but there is not "Save Image As" option in Chrome
2 comments

On the docs page, in Chrome, hit ctrl+shift+J (option+cmd+J on OSX) to open the console, and paste this in:

$('canvas').click(function() { window.open( this.toDataURL("image/png") , 'Serialized Canvas' , 'height=' + this.height + 'width=' + this.width ); });

This will popup a png version of a canvas graph if you click it.

It's a canvas API function. So the author has to add this function (which is trivial).