ImageEncodingOptions.cs 427 B

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