1 2 3 4 5 6 7 8 9
importScripts('./avif_for_importScripts.js'); (async()=>{ const fn=await avif; onmessage=async({data:{bytes,width,height,quality,speed}})=>{ const res=fn(bytes,width,height,quality,speed); postMessage(res,[res.buffer]); } postMessage('ready'); })();