The <- this is the image above
UPDATE: To do this with raw data you need to encode data to PNG data (I recommend this library) then Just use Base64 library like below, or use the decoder from the same library:
data = Base64.encode(data)
const img = new Image();
img.src = `data:image/png;base64,${data}`;