Merge pull request #2676 from GranPC/public-pr/blurhash

Implement Blurhash generation for images
This commit is contained in:
Vasily
2020-06-02 17:25:45 +03:00
committed by GitHub
17 changed files with 339 additions and 38 deletions

View File

@@ -510,6 +510,13 @@ namespace MediaBrowser.Model.Dto
/// <value>The series thumb image tag.</value>
public string SeriesThumbImageTag { get; set; }
/// <summary>
/// Gets or sets the blurhashes for the image tags.
/// Maps image type to dictionary mapping image tag to blurhash value.
/// </summary>
/// <value>The blurhashes.</value>
public Dictionary<ImageType, Dictionary<string, string>> ImageBlurHashes { get; set; }
/// <summary>
/// Gets or sets the series studio.
/// </summary>

View File

@@ -30,6 +30,12 @@ namespace MediaBrowser.Model.Dto
/// <value>The path.</value>
public string Path { get; set; }
/// <summary>
/// Gets or sets the blurhash.
/// </summary>
/// <value>The blurhash.</value>
public string BlurHash { get; set; }
/// <summary>
/// Gets or sets the height.
/// </summary>