I am geting an image from an API Response. How can i Capture the blob and convert to base64.
const response = await fetch("imageURL");
const imageBlob = await response.blob()
I can able to capture the imageblob. But unable to convert to base64 and render in the UI.