ImageEncodingOptions.cs 408 B

1234567891011121314151617181920
  1. namespace MediaBrowser.Controller.MediaEncoding
  2. {
  3. public class ImageEncodingOptions
  4. {
  5. public string InputPath { get; set; }
  6. public int? Width { get; set; }
  7. public int? Height { get; set; }
  8. public int? MaxWidth { get; set; }
  9. public int? MaxHeight { get; set; }
  10. public int? Quality { get; set; }
  11. public string Format { get; set; }
  12. }
  13. }