You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
763 B
26 lines
763 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Drawing
|
|
{
|
|
public static class ImageProcessorExtensions
|
|
{
|
|
public static string GetImageCacheTag(this IImageProcessor processor, BaseItem item, ImageType imageType)
|
|
{
|
|
return processor.GetImageCacheTag(item, imageType, 0);
|
|
}
|
|
|
|
public static string GetImageCacheTag(this IImageProcessor processor, BaseItem item, ImageType imageType, int imageIndex)
|
|
{
|
|
var imageInfo = item.GetImageInfo(imageType, imageIndex);
|
|
|
|
if (imageInfo == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return processor.GetImageCacheTag(item, imageInfo);
|
|
}
|
|
}
|
|
}
|