You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Drawing/ImageFormat.cs

34 lines
550 B

6 years ago
namespace MediaBrowser.Model.Drawing
{
/// <summary>
/// Enum ImageOutputFormat.
6 years ago
/// </summary>
public enum ImageFormat
{
/// <summary>
/// The BMP.
6 years ago
/// </summary>
Bmp,
6 years ago
/// <summary>
/// The GIF.
6 years ago
/// </summary>
Gif,
6 years ago
/// <summary>
/// The JPG.
6 years ago
/// </summary>
Jpg,
6 years ago
/// <summary>
/// The PNG.
6 years ago
/// </summary>
Png,
6 years ago
/// <summary>
/// The webp.
6 years ago
/// </summary>
Webp
}
}