aboutsummaryrefslogtreecommitdiff
path: root/Emby.Drawing/NullImageEncoder.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2020-06-02 17:25:45 +0300
committerGitHub <noreply@github.com>2020-06-02 17:25:45 +0300
commitb9618c8c015b5a49110c3abad8659525bdfac4fd (patch)
tree11dded5020a3690a728c30898f7674e7c8a1cf01 /Emby.Drawing/NullImageEncoder.cs
parentd38adb95a727203b0d0dcee344f03b374b5d2b8f (diff)
parent26eef1bbf823e6f9fc22b11d95a17b1370b21842 (diff)
Merge pull request #2676 from GranPC/public-pr/blurhash
Implement Blurhash generation for images
Diffstat (limited to 'Emby.Drawing/NullImageEncoder.cs')
-rw-r--r--Emby.Drawing/NullImageEncoder.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Drawing/NullImageEncoder.cs b/Emby.Drawing/NullImageEncoder.cs
index 5af7f1622..bbb5c1716 100644
--- a/Emby.Drawing/NullImageEncoder.cs
+++ b/Emby.Drawing/NullImageEncoder.cs
@@ -42,5 +42,11 @@ namespace Emby.Drawing
{
throw new NotImplementedException();
}
+
+ /// <inheritdoc />
+ public string GetImageBlurHash(int xComp, int yComp, string path)
+ {
+ throw new NotImplementedException();
+ }
}
}