I'm working on a canvas drawing project. I convert the canvas as an image, then I save that image as '.png'. I have to right click on the image and select the 'save image as' option. But I want to provide that option through a button. When I click the button it should be saved.
Any example or idea would be appreciated.
This is a js function that converts canvas to png.
function save2()
{
window.open(canvas.toDataURL('image/png'));
var gh=(canvas.toDataURL('png'));
alert("converted");
}
In modern browser you can use the download attribute
just trigger the function from a button, or insert the anchor in the page and style it as a button.
FIDDLE