2
votes

through AJAX I receive a image in base64 which I adjunct to the src attribute of a img tag.

I want to offer an option to download that image, is it possible to take the data of the src attribute and download it? This is because I cannot download the image again from the server.

Thank you.

1

1 Answers

3
votes

Just set the window.location to the encoded URI (or open a popup window), eg

window.location.href = 'data:image/png;base64,iVBORw0KGgo....