I have a html content
<div> <img src="xyz.jpg"> </div>
where an image is fetched from a web service in hex format. I am converting this hex format to jpeg and displaying in a div. But <img src="">
requires a source folder where the image will be stored. Since the data is coming from web service and is getting converted into jpeg and displayed in div I can't use <img src=""
> tag. Do you know about other alternative to achieve this?