1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-27 17:00:52 +01:00

Add compression

This commit is contained in:
Nayam Amarshe 2023-11-22 21:42:47 +05:30
parent 21cfd29d2e
commit 10a5817c23
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,7 @@ export type ImageUpscaylPayload = {
gpuId: string;
saveImageAs: string;
overwrite: boolean;
compression: number;
noImageProcessing: boolean;
};
@ -16,6 +17,7 @@ export type DoubleUpscaylPayload = {
scale: string;
gpuId: string;
saveImageAs: string;
compression: number;
noImageProcessing: boolean;
};
@ -26,5 +28,6 @@ export type BatchUpscaylPayload = {
gpuId: string;
saveImageAs: string;
scale: string;
compression: number;
noImageProcessing: boolean;
};

View File

@ -449,6 +449,7 @@ const Home = () => {
saveImageAs,
scale,
noImageProcessing,
compression,
});
logit("🏁 DOUBLE_UPSCAYL");
} else if (batchMode) {
@ -462,6 +463,7 @@ const Home = () => {
saveImageAs,
scale,
noImageProcessing,
compression,
});
logit("🏁 FOLDER_UPSCAYL");
} else {
@ -475,6 +477,7 @@ const Home = () => {
scale,
overwrite,
noImageProcessing,
compression,
});
logit("🏁 UPSCAYL");
}