2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-10 13:23:25 +00:00

Add status messages for image operations

This commit is contained in:
j433866
2019-03-07 10:03:09 +00:00
parent 833c1cd98f
commit 4a7ea469d4
8 changed files with 24 additions and 3 deletions

View File

@@ -41,6 +41,8 @@ class DitherImage extends Operation {
if (type && type.mime.indexOf("image") === 0){
const image = await jimp.read(Buffer.from(input));
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Applying dither to image...");
image.dither565();
const imageBuffer = await image.getBufferAsync(jimp.AUTO);
return [...imageBuffer];