wasm_avif 0.7.0

esm modules for avif image compression, with sync and async (worker) versions
Documentation
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');
})();