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/ImageFile.cs')
-rw-r--r--UVtools.Core/FileFormats/ImageFile.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/UVtools.Core/FileFormats/ImageFile.cs b/UVtools.Core/FileFormats/ImageFile.cs
index 490b286..c97ff1d 100644
--- a/UVtools.Core/FileFormats/ImageFile.cs
+++ b/UVtools.Core/FileFormats/ImageFile.cs
@@ -76,10 +76,13 @@ namespace UVtools.Core.FileFormats
private Mat ImageMat { get; set; }
- public override void Decode(string fileFullPath, OperationProgress progress = null)
+ protected override void EncodeInternally(string fileFullPath, OperationProgress progress)
{
- base.Decode(fileFullPath, progress);
+ throw new NotSupportedException();
+ }
+ protected override void DecodeInternally(string fileFullPath, OperationProgress progress)
+ {
ImageMat = CvInvoke.Imread(fileFullPath, ImreadModes.Grayscale);
const byte startDivisor = 2;
for (int i = 0; i < ThumbnailsCount; i++)
@@ -106,7 +109,7 @@ namespace UVtools.Core.FileFormats
public override FileFormat Convert(Type to, string fileFullPath, OperationProgress progress = null)
{
- throw new NotImplementedException();
+ throw new NotSupportedException();
}