Force Single Image => Sorting
This commit is contained in:
@ -20,7 +20,6 @@ public class C_Resize
|
||||
protected readonly string _FileNameExtension;
|
||||
public string FileNameExtension => _FileNameExtension;
|
||||
|
||||
private readonly Serilog.ILogger? _Log;
|
||||
private readonly int _TempResolutionWidth;
|
||||
private readonly int _TempResolutionHeight;
|
||||
private readonly string[] _ValidResolutions;
|
||||
@ -48,7 +47,6 @@ public class C_Resize
|
||||
_OutputResolutionOrientationIndex = 2;
|
||||
_EncoderParameters = encoderParameters;
|
||||
_FileNameExtension = filenameExtension;
|
||||
_Log = Serilog.Log.ForContext<C_Resize>();
|
||||
AngleBracketCollection = new List<string>();
|
||||
_OverrideForResizeImages = overrideForResizeImages;
|
||||
_PropertiesChangedForResize = propertiesChangedForResize;
|
||||
@ -384,8 +382,6 @@ public class C_Resize
|
||||
|
||||
private int[] GetCollection(string outputResolution)
|
||||
{
|
||||
if (_Log is null)
|
||||
{ }
|
||||
List<int> results = new();
|
||||
string[] segments = outputResolution.Split('x');
|
||||
results.Add(int.Parse(segments[0]));
|
||||
|
Reference in New Issue
Block a user