2013-09-19 11:12:28 -04:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2013-09-19 15:46:19 -04:00
|
|
|
|
using MediaBrowser.Model.Drawing;
|
2014-11-08 22:18:14 -05:00
|
|
|
|
using System;
|
2013-09-19 11:12:28 -04:00
|
|
|
|
using System.Collections.Generic;
|
2014-07-31 20:37:06 -04:00
|
|
|
|
using System.IO;
|
2013-09-19 11:12:28 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Drawing
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ImageProcessingOptions
|
|
|
|
|
|
{
|
2013-12-19 16:51:32 -05:00
|
|
|
|
public IHasImages Item { get; set; }
|
2013-09-19 11:12:28 -04:00
|
|
|
|
|
2014-06-18 11:12:20 -04:00
|
|
|
|
public ItemImageInfo Image { get; set; }
|
2013-09-19 11:12:28 -04: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; }
|
|
|
|
|
|
|
|
|
|
|
|
public int? Quality { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public List<IImageEnhancer> Enhancers { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public ImageOutputFormat OutputFormat { get; set; }
|
2013-09-19 13:45:48 -04:00
|
|
|
|
|
2013-10-02 11:32:11 -04:00
|
|
|
|
public bool AddPlayedIndicator { get; set; }
|
2013-09-21 11:06:00 -04:00
|
|
|
|
|
2014-01-01 13:26:31 -05:00
|
|
|
|
public int? UnplayedCount { get; set; }
|
2013-09-21 11:06:00 -04:00
|
|
|
|
|
2014-09-01 16:10:54 -04:00
|
|
|
|
public double PercentPlayed { get; set; }
|
2014-07-31 20:37:06 -04:00
|
|
|
|
|
2013-09-21 11:06:00 -04:00
|
|
|
|
public string BackgroundColor { get; set; }
|
2013-11-06 16:32:26 -05:00
|
|
|
|
|
2014-07-31 20:37:06 -04:00
|
|
|
|
public bool HasDefaultOptions(string originalImagePath)
|
2013-11-06 16:32:26 -05:00
|
|
|
|
{
|
2014-07-31 20:37:06 -04:00
|
|
|
|
return HasDefaultOptionsWithoutSize(originalImagePath) &&
|
|
|
|
|
|
!Width.HasValue &&
|
|
|
|
|
|
!Height.HasValue &&
|
|
|
|
|
|
!MaxWidth.HasValue &&
|
2013-11-06 16:32:26 -05:00
|
|
|
|
!MaxHeight.HasValue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-07-31 20:37:06 -04:00
|
|
|
|
public bool HasDefaultOptionsWithoutSize(string originalImagePath)
|
2013-11-06 16:32:26 -05:00
|
|
|
|
{
|
2013-11-15 11:00:39 -05:00
|
|
|
|
return (!Quality.HasValue || Quality.Value == 100) &&
|
2014-07-31 20:37:06 -04:00
|
|
|
|
IsOutputFormatDefault(originalImagePath) &&
|
2013-11-06 16:32:26 -05:00
|
|
|
|
!AddPlayedIndicator &&
|
2014-09-01 16:10:54 -04:00
|
|
|
|
PercentPlayed.Equals(0) &&
|
2014-01-01 13:26:31 -05:00
|
|
|
|
!UnplayedCount.HasValue &&
|
2013-11-06 16:32:26 -05:00
|
|
|
|
string.IsNullOrEmpty(BackgroundColor);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-07-31 20:37:06 -04:00
|
|
|
|
private bool IsOutputFormatDefault(string originalImagePath)
|
2013-11-06 16:32:26 -05:00
|
|
|
|
{
|
2014-11-08 22:18:14 -05:00
|
|
|
|
return string.Equals(Path.GetExtension(originalImagePath), "." + OutputFormat, StringComparison.OrdinalIgnoreCase);
|
2013-11-06 16:32:26 -05:00
|
|
|
|
}
|
2013-09-19 11:12:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|