Reputation: 161
I have an application where images are generated in c# code and rendered on browser using data uri. None of the images are showing in IOS, not even in Chrome.
https://jsfiddle.net/z82dpqj1/1/
<img src="src="data:image/bmp; base64,***">
Please guide.
Upvotes: 0
Views: 1241
Reputation: 217
Remove the space between ;
and base64
.
<img src="src="data:image/bmp;base64,***">
Tested with Safari on iOS-14.4
EDIT: Here is screenshot from my iPhone. Are you sure its not your browser?
Upvotes: 1