Currently I have an API call that returns a locally stored img in the form of a blob. From here I have extracted the blob.text() which returns the following:
{"src":"/_next/static/media/screenshot.483af195.png",
"height":896,
"width":994,"blurDataURL":"/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fscreenshot.483af195.png&w=8&q=70"}
Now I would like to convert this to a single string that can be passed to an img tag to display on the browser. Any pointers?