ImageEncodingOptions.cs 407 B

12345678910111213141516171819
  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. }