jellyfin/MediaBrowser.Model/Drawing/ImageFormat.cs

31 lines
544 B
C#
Raw Normal View History

2013-09-19 21:46:19 +02:00

namespace MediaBrowser.Model.Drawing
{
/// <summary>
/// Enum ImageOutputFormat
/// </summary>
2014-11-29 20:51:30 +01:00
public enum ImageFormat
2013-09-19 21:46:19 +02:00
{
/// <summary>
/// The BMP
/// </summary>
Bmp,
/// <summary>
/// The GIF
/// </summary>
Gif,
/// <summary>
/// The JPG
/// </summary>
Jpg,
/// <summary>
/// The PNG
/// </summary>
2014-03-28 05:24:11 +01:00
Png,
/// <summary>
/// The webp
/// </summary>
2014-03-28 05:24:11 +01:00
Webp
2013-09-19 21:46:19 +02:00
}
}