Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/FileFormats/SL1File.cs')
-rw-r--r--UVtools.Core/FileFormats/SL1File.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UVtools.Core/FileFormats/SL1File.cs b/UVtools.Core/FileFormats/SL1File.cs
index e7ca005..97e34eb 100644
--- a/UVtools.Core/FileFormats/SL1File.cs
+++ b/UVtools.Core/FileFormats/SL1File.cs
@@ -589,7 +589,7 @@ namespace UVtools.Core.FileFormats
{
if (!entity.Name.EndsWith(".ini")) continue;
iniFiles.Add(entity.Name);
- using StreamReader streamReader = new StreamReader(entity.Open());
+ using StreamReader streamReader = new(entity.Open());
string line;
while ((line = streamReader.ReadLine()) != null)
{
@@ -652,7 +652,7 @@ namespace UVtools.Core.FileFormats
if (entity.Name.StartsWith("thumbnail"))
{
using Stream stream = entity.Open();
- Mat image = new Mat();
+ Mat image = new();
CvInvoke.Imdecode(stream.ToArray(), ImreadModes.AnyColor, image);
byte thumbnailIndex =
(byte) (image.Width == ThumbnailsOriginalSize[(int) FileThumbnailSize.Small].Width &&