优化代码
This commit is contained in:
parent
4e3c9aa311
commit
d86f91f6c7
@ -33,6 +33,14 @@ namespace Comic_Compressor
|
||||
return;
|
||||
}
|
||||
|
||||
Console.WriteLine("目标格式:0 - webp, 1 - avif, 2 - JXL(JPEG-XL), 3 - JPG, 4 - PNG, 5 - BMP, 6 - 保留原格式");
|
||||
string? modeInput = Console.ReadLine();
|
||||
if (modeInput == null)
|
||||
{
|
||||
Console.WriteLine("无效格式");
|
||||
return;
|
||||
}
|
||||
|
||||
Console.WriteLine("使用预设质量(默认使用)?(y/n)");
|
||||
string? input = Console.ReadLine()?.Trim().ToLower();
|
||||
bool usePresetQuality = input == null || input == "" || input == "y" || input == "yes";
|
||||
@ -54,14 +62,6 @@ namespace Comic_Compressor
|
||||
}
|
||||
}
|
||||
|
||||
Console.WriteLine("目标格式:0 - webp, 1 - avif, 2 - JXL(JPEG-XL), 3 - JPG, 4 - PNG, 5 - BMP, 6 - 保留原格式");
|
||||
string? modeInput = Console.ReadLine();
|
||||
if (modeInput == null)
|
||||
{
|
||||
Console.WriteLine("无效格式");
|
||||
return;
|
||||
}
|
||||
|
||||
switch (modeInput)
|
||||
{
|
||||
case "0":
|
||||
|
Loading…
Reference in New Issue
Block a user