import sharp from "sharp"; import logit from "./logit"; import { getMainWindow } from "../main-window"; import { compression } from "./config-variables"; const convertAndScale = async ( originalImagePath: string, upscaledImagePath: string, processedImagePath: string, scale: string, saveImageAs: string, onError: (error: any) => void ) => { const mainWindow = getMainWindow(); const originalImage = await sharp(originalImagePath).metadata(); if (!mainWindow || !originalImage) { throw new Error("Could not grab the original image!"); } // Resize the image to the scale const newImage = sharp(upscaledImagePath) .resize( originalImage.width && originalImage.width * parseInt(scale), originalImage.height && originalImage.height * parseInt(scale) ) .withMetadata(); // Keep metadata // Change the output according to the saveImageAs if (saveImageAs === "png") { newImage.png({ quality: 100 - compression }); } else if (saveImageAs === "jpg") { console.log("Quality: ", compression); newImage.jpeg({ quality: 100 - compression }); } // Save the image const buffer = await newImage.toBuffer(); try { await sharp(buffer).toFile(processedImagePath); } catch (error) { logit("❌ Error converting to: ", saveImageAs, error); onError(error); } logit("✅ Done converting to: ", upscaledImagePath); }; export default convertAndScale;