jellyfin/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs

67 lines
1.9 KiB
C#
Raw Normal View History

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