mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-20 06:30:57 +01:00
Merge pull request #2676 from GranPC/public-pr/blurhash
Implement Blurhash generation for images
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user