2014-03-27 23:01:42 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.MediaEncoding
|
|
|
|
|
{
|
|
|
|
|
public class ImageEncodingOptions
|
|
|
|
|
{
|
|
|
|
|
public string InputPath { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? Width { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? Height { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? MaxWidth { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? MaxHeight { get; set; }
|
|
|
|
|
|
2014-03-28 03:32:43 +00:00
|
|
|
|
public int? Quality { get; set; }
|
|
|
|
|
|
2014-03-27 23:01:42 +00:00
|
|
|
|
public string Format { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|