I am trying to save Base64 image data as a PNG file on the server. I'm currently rendering the raw data like so...
<img src="data:image/jpeg;base64,{binary data}" />
This works for displaying the image, however I'm finding it impossible to share the image to social media sites using social media share buttons like 'react-share': https://github.com/nygardk/react-share
Is this due to the image not being in a file format such as .jpg or .png? If so, how may I save Base64 data to a standard image file?