38f96af079
Refs #575
30 lines
540 B
C#
30 lines
540 B
C#
namespace MediaBrowser.Model.Drawing
|
|
{
|
|
/// <summary>
|
|
/// Enum ImageOutputFormat
|
|
/// </summary>
|
|
public enum ImageFormat
|
|
{
|
|
/// <summary>
|
|
/// The BMP
|
|
/// </summary>
|
|
Bmp,
|
|
/// <summary>
|
|
/// The GIF
|
|
/// </summary>
|
|
Gif,
|
|
/// <summary>
|
|
/// The JPG
|
|
/// </summary>
|
|
Jpg,
|
|
/// <summary>
|
|
/// The PNG
|
|
/// </summary>
|
|
Png,
|
|
/// <summary>
|
|
/// The webp
|
|
/// </summary>
|
|
Webp
|
|
}
|
|
}
|