I am wondering how I can apply a CSS filter to an image and then save the image to disk.
For example, I have an image tag, I can apply a sepia effect via CSS
img.sepia{
filter: sepia(20%);
}
And apply the class to an image tag in the HTML
<img src="img.png" class="sepia" />
How can I save that image with the filter applied?