Need to get Base64 from static img html element.
Code
<img id="imgDownload" src="path to image"/>
var data = btoa(document.getElementById("imgDownload"))
But btoa is showing compile error. Have send the base64 encoded code to server to download the image. Thanks in Advance