Is there a way to show bitmap image data in an HTML element?
For example, you have a regular image that points to a source file like this:
<img src="myImage.png" width="100" height="100" />
Is there something like this:
<img width="100" height="100">
<data>ABCDEF...</data>
</img>
Where data would be bitmap data or something similar? And if possible if you know if it's recommended or supported in major browsers?