jellyfin/MediaBrowser.Model/Drawing/ImageFormat.cs

34 lines
550 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Drawing
{
/// <summary>
2020-02-03 19:49:27 -05:00
/// Enum ImageOutputFormat.
2018-12-27 18:27:57 -05:00
/// </summary>
public enum ImageFormat
{
/// <summary>
2020-02-03 19:49:27 -05:00
/// The BMP.
2018-12-27 18:27:57 -05:00
/// </summary>
Bmp,
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
2020-02-03 19:49:27 -05:00
/// The GIF.
2018-12-27 18:27:57 -05:00
/// </summary>
Gif,
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
2020-02-03 19:49:27 -05:00
/// The JPG.
2018-12-27 18:27:57 -05:00
/// </summary>
Jpg,
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
2020-02-03 19:49:27 -05:00
/// The PNG.
2018-12-27 18:27:57 -05:00
/// </summary>
Png,
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
2020-02-03 19:49:27 -05:00
/// The webp.
2018-12-27 18:27:57 -05:00
/// </summary>
Webp
}
}