fetch('abc.webp')
.then(processStatus)
.then(parseBlob)
.then(myBlob => {
var objURL = URL.createObjectURL(myBlob);
});
and then just send this image to the main worker to render on the page? If not so then how would I do it so that the image be decoded in the worker thread and then sent to main thread for rendering.