Adding the Quite OK Image (QOI) Codec (#1384)

This commit is contained in:
Aryan Pingle
2023-10-20 13:58:59 +05:30
committed by GitHub
parent f374068fb2
commit d87eff7645
19 changed files with 295 additions and 0 deletions

7
codecs/qoi/dec/qoi_dec.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
export interface QOIModule extends EmscriptenWasm.Module {
decode(data: BufferSource): ImageData | null;
}
declare var moduleFactory: EmscriptenWasm.ModuleFactory<QOIModule>;
export default moduleFactory;