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

@ -99,6 +99,8 @@ class CropImage extends Operation {
} }
const image = await jimp.read(Buffer.from(input)); const image = await jimp.read(Buffer.from(input));
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Cropping image...");
if (autocrop) { if (autocrop) {
image.autocrop({ image.autocrop({
tolerance: (autoTolerance / 100), tolerance: (autoTolerance / 100),

View file

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

View file

@ -51,6 +51,8 @@ class FlipImage extends Operation {
const image = await jimp.read(Buffer.from(input)); const image = await jimp.read(Buffer.from(input));
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Flipping image...");
switch (flipAxis){ switch (flipAxis){
case "Horizontal": case "Horizontal":
image.flip(true, false); image.flip(true, false);

View file

@ -59,8 +59,16 @@ class ImageBrightnessContrast extends Operation {
} }
const image = await jimp.read(Buffer.from(input)); const image = await jimp.read(Buffer.from(input));
if (brightness !== 0) {
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Changing image brightness...");
image.brightness(brightness / 100); image.brightness(brightness / 100);
}
if (contrast !== 0) {
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Changing image contrast...");
image.contrast(contrast / 100); image.contrast(contrast / 100);
}
const imageBuffer = await image.getBufferAsync(jimp.AUTO); const imageBuffer = await image.getBufferAsync(jimp.AUTO);
return [...imageBuffer]; return [...imageBuffer];

View file

@ -53,7 +53,8 @@ class ImageFilter extends Operation {
} }
const image = await jimp.read(Buffer.from(input)); const image = await jimp.read(Buffer.from(input));
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Applying " + filterType.toLowerCase() + " filter to image...");
if (filterType === "Greyscale") { if (filterType === "Greyscale") {
image.greyscale(); image.greyscale();
} else { } else {

View file

@ -52,6 +52,8 @@ class ImageOpacity extends Operation {
} }
const image = await jimp.read(Buffer.from(input)); const image = await jimp.read(Buffer.from(input));
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Changing image opacity...");
image.opacity(opacity / 100); image.opacity(opacity / 100);
const imageBuffer = await image.getBufferAsync(jimp.MIME_PNG); const imageBuffer = await image.getBufferAsync(jimp.MIME_PNG);

View file

@ -42,6 +42,8 @@ class InvertImage extends Operation {
throw new OperationError("Invalid input file format."); throw new OperationError("Invalid input file format.");
} }
const image = await jimp.read(Buffer.from(input)); const image = await jimp.read(Buffer.from(input));
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Inverting image...");
image.invert(); image.invert();
const imageBuffer = await image.getBufferAsync(jimp.AUTO); const imageBuffer = await image.getBufferAsync(jimp.AUTO);
return [...imageBuffer]; return [...imageBuffer];

View file

@ -48,6 +48,8 @@ class RotateImage extends Operation {
if (type && type.mime.indexOf("image") === 0){ if (type && type.mime.indexOf("image") === 0){
const image = await jimp.read(Buffer.from(input)); const image = await jimp.read(Buffer.from(input));
if (ENVIRONMENT_IS_WORKER())
self.sendStatusMessage("Rotating image...");
image.rotate(degrees); image.rotate(degrees);
const imageBuffer = await image.getBufferAsync(jimp.AUTO); const imageBuffer = await image.getBufferAsync(jimp.AUTO);
return [...imageBuffer]; return [...imageBuffer];