jellyfin/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs

98 lines
2.8 KiB
C#
Raw Normal View History

2013-09-19 17:12:28 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Providers;
2013-09-19 21:46:19 +02:00
using MediaBrowser.Model.Drawing;
using System;
2013-09-19 17:12:28 +02:00
using System.Collections.Generic;
using System.IO;
2015-11-09 19:18:37 +01:00
using System.Linq;
2013-09-19 17:12:28 +02:00
namespace MediaBrowser.Controller.Drawing
{
public class ImageProcessingOptions
{
2013-12-19 22:51:32 +01:00
public IHasImages Item { get; set; }
2013-09-19 17:12:28 +02:00
2014-06-18 17:12:20 +02:00
public ItemImageInfo Image { get; set; }
2013-09-19 17:12:28 +02:00
public int ImageIndex { get; set; }
public bool CropWhiteSpace { get; set; }
public int? Width { get; set; }
public int? Height { get; set; }
public int? MaxWidth { get; set; }
public int? MaxHeight { get; set; }
2015-10-27 15:02:30 +01:00
public int Quality { get; set; }
2013-09-19 17:12:28 +02:00
public List<IImageEnhancer> Enhancers { get; set; }
2015-11-09 19:18:37 +01:00
public List<ImageFormat> SupportedOutputFormats { get; set; }
public bool AddPlayedIndicator { get; set; }
2013-09-21 17:06:00 +02:00
public int? UnplayedCount { get; set; }
2013-09-21 17:06:00 +02:00
public double PercentPlayed { get; set; }
2013-09-21 17:06:00 +02:00
public string BackgroundColor { get; set; }
2016-02-23 20:48:58 +01:00
public string ForegroundLayer { get; set; }
public bool HasDefaultOptions(string originalImagePath)
{
return HasDefaultOptionsWithoutSize(originalImagePath) &&
!Width.HasValue &&
!Height.HasValue &&
!MaxWidth.HasValue &&
!MaxHeight.HasValue;
}
2015-11-09 19:18:37 +01:00
public bool HasDefaultOptions(string originalImagePath, ImageSize size)
{
if (!HasDefaultOptionsWithoutSize(originalImagePath))
{
return false;
}
if (Width.HasValue && !size.Width.Equals(Width.Value))
{
return false;
}
if (Height.HasValue && !size.Height.Equals(Height.Value))
{
return false;
}
if (MaxWidth.HasValue && size.Width > MaxWidth.Value)
{
return false;
}
if (MaxHeight.HasValue && size.Height > MaxHeight.Value)
{
return false;
}
return true;
}
public bool HasDefaultOptionsWithoutSize(string originalImagePath)
{
2015-11-09 19:18:37 +01:00
return (Quality >= 90) &&
IsFormatSupported(originalImagePath) &&
!AddPlayedIndicator &&
PercentPlayed.Equals(0) &&
!UnplayedCount.HasValue &&
2016-02-23 20:48:58 +01:00
string.IsNullOrEmpty(BackgroundColor) &&
string.IsNullOrEmpty(ForegroundLayer);
}
2015-11-09 19:18:37 +01:00
private bool IsFormatSupported(string originalImagePath)
{
2015-11-09 19:18:37 +01:00
var ext = Path.GetExtension(originalImagePath);
return SupportedOutputFormats.Any(outputFormat => string.Equals(ext, "." + outputFormat, StringComparison.OrdinalIgnoreCase));
}
2013-09-19 17:12:28 +02:00
}
}