I have added CSS filters in the "style" attribute of an <img>
tag containing an image.
<img src="myImage.png" style="filter: grayscale(100%)">
Now, the original image will look different due to the filters applied and I want that different looking image to be converted into Base64 image file using JavaScript.
Please help me out of this situation.