Moved Ditherer to other folder

This commit is contained in:
CrispyBaguette 2021-12-12 18:07:58 +01:00
parent 98efaa42fd
commit 4b097a0d15

View File

@ -2,8 +2,11 @@ class Ditherer {
async dither(image: Uint8ClampedArray): Promise<Uint8ClampedArray> {
const worker: any = await wasmWorker("/main.wasm");
let output: Uint8ClampedArray;
output = await worker.dither(image);
worker.terminate();
try {
output = await worker.dither(image);
} finally {
worker.terminate();
}
return output;
}
}