1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-14 18:02:38 +01:00
upscayl/electron/commands/image-upscayl.ts

202 lines
5.5 KiB
TypeScript
Raw Normal View History

2023-09-10 14:44:04 +05:30
import fs from "fs";
2023-09-10 23:30:49 +05:30
import { modelsPath } from "../utils/get-resource-paths";
2023-09-10 14:44:04 +05:30
import COMMAND from "../constants/commands";
import {
2023-09-17 17:07:57 +05:30
compression,
2023-09-10 23:12:18 +05:30
customModelsFolderPath,
folderPath,
2023-09-19 00:00:43 +05:30
noImageProcessing,
2023-09-10 23:12:18 +05:30
outputFolderPath,
overwrite,
saveOutputFolder,
2023-09-10 14:44:04 +05:30
setChildProcesses,
setOverwrite,
2023-09-10 23:12:18 +05:30
setStopped,
stopped,
2023-09-10 14:44:04 +05:30
} from "../utils/config-variables";
import convertAndScale from "../utils/convert-and-scale";
import { getSingleImageArguments } from "../utils/get-arguments";
import logit from "../utils/logit";
import slash from "../utils/slash";
import { spawnUpscayl } from "../utils/spawn-upscayl";
import { parse } from "path";
import DEFAULT_MODELS from "../constants/models";
2023-09-10 23:12:18 +05:30
import { getMainWindow } from "../main-window";
2023-09-10 14:44:04 +05:30
const imageUpscayl = async (event, payload) => {
2023-09-10 23:12:18 +05:30
const mainWindow = getMainWindow();
if (!mainWindow) {
2023-09-11 08:00:50 +05:30
logit("No main window found");
2023-09-10 23:12:18 +05:30
return;
}
2023-09-10 23:29:35 +05:30
setOverwrite(payload.overwrite);
2023-09-10 23:12:18 +05:30
2023-09-10 14:44:04 +05:30
const model = payload.model as string;
const gpuId = payload.gpuId as string;
const saveImageAs = payload.saveImageAs as string;
let inputDir = (payload.imagePath.match(/(.*)[\/\\]/)[1] || "") as string;
let outputDir: string | undefined =
2023-09-10 23:12:18 +05:30
folderPath || (payload.outputPath as string);
2023-09-10 14:44:04 +05:30
2023-09-10 23:12:18 +05:30
if (saveOutputFolder === true && outputFolderPath) {
outputDir = outputFolderPath;
2023-09-10 14:44:04 +05:30
}
const isDefaultModel = DEFAULT_MODELS.includes(model);
const fullfileName = payload.imagePath.replace(/^.*[\\\/]/, "") as string;
const fileName = parse(fullfileName).name;
const fileExt = parse(fullfileName).ext;
2023-09-19 00:00:43 +05:30
let initialScale = "4";
2023-09-10 14:44:04 +05:30
if (model.includes("x2")) {
2023-09-19 00:00:43 +05:30
initialScale = "2";
2023-09-10 14:44:04 +05:30
} else if (model.includes("x3")) {
2023-09-19 00:00:43 +05:30
initialScale = "3";
2023-09-10 14:44:04 +05:30
} else {
2023-09-19 00:00:43 +05:30
initialScale = "4";
2023-09-10 14:44:04 +05:30
}
2023-09-19 00:00:43 +05:30
const desiredScale = payload.scale;
2023-09-10 14:44:04 +05:30
const outFile =
outputDir +
slash +
fileName +
"_upscayl_" +
2023-09-19 20:21:38 +05:30
(noImageProcessing ? initialScale : desiredScale) +
2023-09-10 14:44:04 +05:30
"x_" +
model +
"." +
saveImageAs;
// UPSCALE
2023-09-10 23:24:08 +05:30
if (fs.existsSync(outFile) && !overwrite) {
2023-09-10 14:44:04 +05:30
// If already upscayled, just output that file
logit("✅ Already upscayled at: ", outFile);
mainWindow.webContents.send(
COMMAND.UPSCAYL_DONE,
outFile.replace(
/([^/\\]+)$/i,
encodeURIComponent(outFile.match(/[^/\\]+$/i)![0])
)
);
} else {
2023-09-19 00:00:43 +05:30
logit("✅ Upscayl Variables: ", {
model,
gpuId,
saveImageAs,
inputDir,
outputDir,
fullfileName,
fileName,
initialScale: initialScale,
desiredScale,
outFile,
compression,
});
2023-09-10 14:44:04 +05:30
const upscayl = spawnUpscayl(
"realesrgan",
getSingleImageArguments(
inputDir,
fullfileName,
outFile,
2023-09-10 23:12:18 +05:30
isDefaultModel ? modelsPath : customModelsFolderPath ?? modelsPath,
2023-09-10 14:44:04 +05:30
model,
2023-09-19 00:00:43 +05:30
initialScale,
2023-09-10 14:44:04 +05:30
gpuId,
"png"
),
logit
);
setChildProcesses(upscayl);
2023-09-10 23:12:18 +05:30
setStopped(false);
2023-09-10 14:44:04 +05:30
let isAlpha = false;
let failed = false;
const onData = (data: string) => {
logit("image upscayl: ", data.toString());
mainWindow.setProgressBar(parseFloat(data.slice(0, data.length)) / 100);
data = data.toString();
mainWindow.webContents.send(COMMAND.UPSCAYL_PROGRESS, data.toString());
if (data.includes("invalid gpu") || data.includes("failed")) {
logit("❌ INVALID GPU OR FAILED");
upscayl.kill();
failed = true;
}
if (data.includes("has alpha channel")) {
logit("📢 INCLUDES ALPHA CHANNEL, CHANGING OUTFILE NAME!");
isAlpha = true;
}
};
const onError = (data) => {
if (!mainWindow) return;
mainWindow.setProgressBar(-1);
mainWindow.webContents.send(COMMAND.UPSCAYL_PROGRESS, data.toString());
failed = true;
upscayl.kill();
return;
};
const onClose = async () => {
2023-09-10 23:12:18 +05:30
if (!failed && !stopped) {
2023-09-10 14:44:04 +05:30
logit("💯 Done upscaling");
logit("♻ Scaling and converting now...");
2023-09-19 20:34:31 +05:30
if (noImageProcessing) {
2023-09-19 00:00:43 +05:30
logit("🚫 Skipping scaling and converting");
2023-09-10 14:44:04 +05:30
mainWindow.setProgressBar(-1);
mainWindow.webContents.send(
COMMAND.UPSCAYL_DONE,
outFile.replace(
/([^/\\]+)$/i,
encodeURIComponent(outFile.match(/[^/\\]+$/i)![0])
)
);
2023-09-19 20:44:15 +05:30
return;
2023-09-10 14:44:04 +05:30
}
2023-09-19 20:34:31 +05:30
mainWindow.webContents.send(COMMAND.SCALING_AND_CONVERTING);
// Free up memory
upscayl.kill();
try {
await convertAndScale(
inputDir + slash + fullfileName,
isAlpha ? outFile + ".png" : outFile,
outFile,
desiredScale,
saveImageAs,
onError
);
mainWindow.setProgressBar(-1);
mainWindow.webContents.send(
COMMAND.UPSCAYL_DONE,
outFile.replace(
/([^/\\]+)$/i,
encodeURIComponent(outFile.match(/[^/\\]+$/i)![0])
)
);
} catch (error) {
logit(
"❌ Error processing (scaling and converting) the image. Please report this error on GitHub.",
error
);
upscayl.kill();
mainWindow.webContents.send(
COMMAND.UPSCAYL_ERROR,
"Error processing (scaling and converting) the image. Please report this error on Upscayl GitHub Issues page."
);
}
2023-09-10 14:44:04 +05:30
}
};
upscayl.process.stderr.on("data", onData);
upscayl.process.on("error", onError);
upscayl.process.on("close", onClose);
}
};
export default imageUpscayl;