mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-14 10:47:56 +01:00
247 lines
6.9 KiB
TypeScript
247 lines
6.9 KiB
TypeScript
import path, { parse } from "path";
|
|
import { getMainWindow } from "../main-window";
|
|
import {
|
|
childProcesses,
|
|
customModelsFolderPath,
|
|
noImageProcessing,
|
|
outputFolderPath,
|
|
saveOutputFolder,
|
|
setCompression,
|
|
setNoImageProcessing,
|
|
setStopped,
|
|
stopped,
|
|
} from "../utils/config-variables";
|
|
import DEFAULT_MODELS from "../constants/models";
|
|
import slash from "../utils/slash";
|
|
import { spawnUpscayl } from "../utils/spawn-upscayl";
|
|
import {
|
|
getDoubleUpscaleArguments,
|
|
getDoubleUpscaleSecondPassArguments,
|
|
} from "../utils/get-arguments";
|
|
import { modelsPath } from "../utils/get-resource-paths";
|
|
import logit from "../utils/logit";
|
|
import COMMAND from "../constants/commands";
|
|
import convertAndScale from "../utils/convert-and-scale";
|
|
import { DoubleUpscaylPayload } from "../../common/types/types";
|
|
|
|
const doubleUpscayl = async (event, payload: DoubleUpscaylPayload) => {
|
|
const mainWindow = getMainWindow();
|
|
if (!mainWindow) return;
|
|
|
|
const model = payload.model as string;
|
|
const imagePath = payload.imagePath;
|
|
let inputDir = (imagePath.match(/(.*)[\/\\]/) || [""])[1];
|
|
let outputDir = path.normalize(payload.outputPath);
|
|
|
|
if (saveOutputFolder === true && outputFolderPath) {
|
|
outputDir = outputFolderPath;
|
|
}
|
|
const gpuId = payload.gpuId as string;
|
|
const saveImageAs = payload.saveImageAs as string;
|
|
|
|
setNoImageProcessing(payload.noImageProcessing);
|
|
setCompression(parseInt(payload.compression));
|
|
|
|
const isDefaultModel = DEFAULT_MODELS.includes(model);
|
|
|
|
// COPY IMAGE TO TMP FOLDER
|
|
|
|
const fullfileName = imagePath.split(slash).slice(-1)[0] as string;
|
|
const fileName = parse(fullfileName).name;
|
|
|
|
let initialScale = "4";
|
|
if (model.includes("x1")) {
|
|
initialScale = "1";
|
|
} else if (model.includes("x2")) {
|
|
initialScale = "2";
|
|
} else if (model.includes("x3")) {
|
|
initialScale = "3";
|
|
} else {
|
|
initialScale = "4";
|
|
}
|
|
const desiredScale = parseInt(payload.scale) * parseInt(payload.scale);
|
|
|
|
const outFile =
|
|
outputDir +
|
|
slash +
|
|
fileName +
|
|
"_upscayl_" +
|
|
(noImageProcessing
|
|
? parseInt(initialScale) * parseInt(initialScale)
|
|
: desiredScale) +
|
|
"x_" +
|
|
model +
|
|
"." +
|
|
saveImageAs;
|
|
|
|
// UPSCALE
|
|
let upscayl = spawnUpscayl(
|
|
"realesrgan",
|
|
getDoubleUpscaleArguments(
|
|
inputDir,
|
|
fullfileName,
|
|
outFile,
|
|
isDefaultModel ? modelsPath : customModelsFolderPath ?? modelsPath,
|
|
model,
|
|
gpuId,
|
|
saveImageAs,
|
|
initialScale
|
|
),
|
|
logit
|
|
);
|
|
|
|
childProcesses.push(upscayl);
|
|
|
|
setStopped(false);
|
|
let failed = false;
|
|
let isAlpha = false;
|
|
let failed2 = false;
|
|
|
|
const onData = (data) => {
|
|
if (!mainWindow) return;
|
|
// CONVERT DATA TO STRING
|
|
data = data.toString();
|
|
// SEND UPSCAYL PROGRESS TO RENDERER
|
|
mainWindow.webContents.send(COMMAND.DOUBLE_UPSCAYL_PROGRESS, data);
|
|
// IF PROGRESS HAS ERROR, UPSCAYL FAILED
|
|
if (data.includes("invalid gpu") || data.includes("failed")) {
|
|
upscayl.kill();
|
|
failed = true;
|
|
}
|
|
if (data.includes("has alpha channel")) {
|
|
isAlpha = true;
|
|
}
|
|
};
|
|
|
|
const onError = (data) => {
|
|
if (!mainWindow) return;
|
|
mainWindow.setProgressBar(-1);
|
|
data.toString();
|
|
// SEND UPSCAYL PROGRESS TO RENDERER
|
|
mainWindow.webContents.send(COMMAND.DOUBLE_UPSCAYL_PROGRESS, data);
|
|
// SET FAILED TO TRUE
|
|
failed = true;
|
|
mainWindow &&
|
|
mainWindow.webContents.send(
|
|
COMMAND.UPSCAYL_ERROR,
|
|
"Error upscaling image. Error: " + data
|
|
);
|
|
upscayl.kill();
|
|
return;
|
|
};
|
|
|
|
const onClose2 = async (code) => {
|
|
if (!mainWindow) return;
|
|
if (!failed2 && !stopped) {
|
|
logit("💯 Done upscaling");
|
|
logit("♻ Scaling and converting now...");
|
|
mainWindow.webContents.send(COMMAND.SCALING_AND_CONVERTING);
|
|
if (noImageProcessing) {
|
|
logit("🚫 Skipping scaling and converting");
|
|
mainWindow.setProgressBar(-1);
|
|
mainWindow.webContents.send(
|
|
COMMAND.DOUBLE_UPSCAYL_DONE,
|
|
isAlpha
|
|
? (outFile + ".png").replace(
|
|
/([^/\\]+)$/i,
|
|
encodeURIComponent((outFile + ".png").match(/[^/\\]+$/i)![0])
|
|
)
|
|
: outFile.replace(
|
|
/([^/\\]+)$/i,
|
|
encodeURIComponent(outFile.match(/[^/\\]+$/i)![0])
|
|
)
|
|
);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await convertAndScale(
|
|
inputDir + slash + fullfileName,
|
|
isAlpha ? outFile + ".png" : outFile,
|
|
outFile,
|
|
desiredScale.toString(),
|
|
saveImageAs,
|
|
onError
|
|
);
|
|
mainWindow.setProgressBar(-1);
|
|
mainWindow.webContents.send(
|
|
COMMAND.DOUBLE_UPSCAYL_DONE,
|
|
isAlpha
|
|
? (outFile + ".png").replace(
|
|
/([^/\\]+)$/i,
|
|
encodeURIComponent((outFile + ".png").match(/[^/\\]+$/i)![0])
|
|
)
|
|
: outFile.replace(
|
|
/([^/\\]+)$/i,
|
|
encodeURIComponent(outFile.match(/[^/\\]+$/i)![0])
|
|
)
|
|
);
|
|
} catch (error) {
|
|
logit("❌ Error reading original image metadata", error);
|
|
mainWindow &&
|
|
mainWindow.webContents.send(
|
|
COMMAND.UPSCAYL_ERROR,
|
|
"Error processing (scaling and converting) the image. Please report this error on Upscayl GitHub Issues page.\n" +
|
|
error
|
|
);
|
|
upscayl.kill();
|
|
}
|
|
}
|
|
};
|
|
|
|
upscayl.process.stderr.on("data", onData);
|
|
upscayl.process.on("error", onError);
|
|
upscayl.process.on("close", (code) => {
|
|
// IF NOT FAILED
|
|
if (!failed && !stopped) {
|
|
// UPSCALE
|
|
let upscayl2 = spawnUpscayl(
|
|
"realesrgan",
|
|
getDoubleUpscaleSecondPassArguments(
|
|
isAlpha,
|
|
outFile,
|
|
isDefaultModel ? modelsPath : customModelsFolderPath ?? modelsPath,
|
|
model,
|
|
gpuId,
|
|
saveImageAs,
|
|
initialScale
|
|
),
|
|
logit
|
|
);
|
|
|
|
childProcesses.push(upscayl2);
|
|
|
|
upscayl2.process.stderr.on("data", (data) => {
|
|
if (!mainWindow) return;
|
|
// CONVERT DATA TO STRING
|
|
data = data.toString();
|
|
// SEND UPSCAYL PROGRESS TO RENDERER
|
|
mainWindow.webContents.send(COMMAND.DOUBLE_UPSCAYL_PROGRESS, data);
|
|
// IF PROGRESS HAS ERROR, UPSCAYL FAILED
|
|
if (data.includes("invalid gpu") || data.includes("failed")) {
|
|
upscayl2.kill();
|
|
failed2 = true;
|
|
}
|
|
});
|
|
upscayl2.process.on("error", (data) => {
|
|
if (!mainWindow) return;
|
|
data.toString();
|
|
// SEND UPSCAYL PROGRESS TO RENDERER
|
|
mainWindow.webContents.send(COMMAND.DOUBLE_UPSCAYL_PROGRESS, data);
|
|
// SET FAILED TO TRUE
|
|
failed2 = true;
|
|
mainWindow &&
|
|
mainWindow.webContents.send(
|
|
COMMAND.UPSCAYL_ERROR,
|
|
"Error upscaling image. Error: " + data
|
|
);
|
|
upscayl2.kill();
|
|
return;
|
|
});
|
|
upscayl2.process.on("close", onClose2);
|
|
}
|
|
});
|
|
};
|
|
|
|
export default doubleUpscayl;
|