mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
39 lines
638 B
C#
39 lines
638 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,
|
|
|
|
/// <summary>
|
|
/// The svg format.
|
|
/// </summary>
|
|
Svg,
|
|
}
|
|
}
|