I am trying to display a blob image. In IE 11 it is not supported and displays a broken image, so I have created a pipe which converts blob image to base 64.
Is there a way where I can bind this pipe to a newly created image element ?
Following code doesn't seem to be working,
const uploadedImgElement = document.createElement('img');
uploadedImgElement.src = response.data.attachmentDetails.fileFullPath + '| blobToBase64';
where blobToBase64
is a pipe.