jellyfin/MediaBrowser.Controller/MediaEncoding/ImageEncodingOptions.cs

24 lines
458 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.MediaEncoding
{
public class ImageEncodingOptions
{
public string InputPath { get; set; }
2019-01-08 00:27:46 +01:00
2018-12-28 00:27:57 +01:00
public int? Width { get; set; }
public int? Height { get; set; }
public int? MaxWidth { get; set; }
public int? MaxHeight { get; set; }
public int? Quality { get; set; }
2019-01-08 00:27:46 +01:00
2018-12-28 00:27:57 +01:00
public string Format { get; set; }
}
}