2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2018-12-27 16:27:57 -07:00
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Drawing
|
|
|
|
{
|
|
|
|
public static class ImageProcessorExtensions
|
|
|
|
{
|
2023-07-29 12:35:38 -07:00
|
|
|
public static string? GetImageCacheTag(this IImageProcessor processor, BaseItem item, ImageType imageType)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
return processor.GetImageCacheTag(item, imageType, 0);
|
|
|
|
}
|
2019-01-07 16:27:46 -07:00
|
|
|
|
2023-07-29 12:35:38 -07:00
|
|
|
public static string? GetImageCacheTag(this IImageProcessor processor, BaseItem item, ImageType imageType, int imageIndex)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
var imageInfo = item.GetImageInfo(imageType, imageIndex);
|
|
|
|
|
2022-12-05 07:00:20 -07:00
|
|
|
if (imageInfo is null)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return processor.GetImageCacheTag(item, imageInfo);
|
|
|
|
}
|
|
|
|
}
|
2019-01-13 12:30:58 -07:00
|
|
|
}
|