Suppose I have an image in base 64 format like so:
data:image/png;base64,iVbOSDFJsadFH234...
and I want to get the base64 string of the image rotated by say 90 degrees. How would I do that?
The suggested links use html/canvas. Is there a way to do it with pure javascript?