wasm_avif 0.6.1

esm modules for avif image compression, with sync and async (worker) versions
Documentation
1
2
3
4
5
6
7
8
importScripts('./avif_for_importScripts.js');
(async()=>{
  const fn=await avif;
  onmessage=async msg=>{
    postMessage(fn(msg.data.bytes,msg.data.width,msg.data.height,msg.data.quality,msg.data.speed));
  }
  postMessage('ready');
})();