ImageProcessingOptions.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using MediaBrowser.Controller.Entities;
  2. using MediaBrowser.Controller.Providers;
  3. using MediaBrowser.Model.Drawing;
  4. using MediaBrowser.Model.Entities;
  5. using System;
  6. using System.Collections.Generic;
  7. namespace MediaBrowser.Controller.Drawing
  8. {
  9. public class ImageProcessingOptions
  10. {
  11. public BaseItem Item { get; set; }
  12. public ImageType ImageType { get; set; }
  13. public int ImageIndex { get; set; }
  14. public string OriginalImagePath { get; set; }
  15. public DateTime OriginalImageDateModified { get; set; }
  16. public bool CropWhiteSpace { get; set; }
  17. public int? Width { get; set; }
  18. public int? Height { get; set; }
  19. public int? MaxWidth { get; set; }
  20. public int? MaxHeight { get; set; }
  21. public int? Quality { get; set; }
  22. public List<IImageEnhancer> Enhancers { get; set; }
  23. public ImageOutputFormat OutputFormat { get; set; }
  24. public bool AddPlayedIndicator { get; set; }
  25. public int? PercentPlayed { get; set; }
  26. public string BackgroundColor { get; set; }
  27. }
  28. }