Suppose I have the entire Base64 string for an image that is generated dynamically. How can I convert something like this:
<img src="data:image/jpeg;base64,/9j/blah blah blah........." />
to
<img src="mypic.jpg" />
Is it even possible to do on the client side without downloading the image to the server? Is there maybe a way to temporarily cache the Base64 image into memory and receive an actual image file?