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.
39 lines
649 B
39 lines
649 B
namespace MediaBrowser.Model.Drawing
|
|
{
|
|
/// <summary>
|
|
/// Enum ImageOutputFormat.
|
|
/// </summary>
|
|
public enum ImageFormat
|
|
{
|
|
/// <summary>
|
|
/// BMP format.
|
|
/// </summary>
|
|
Bmp,
|
|
|
|
/// <summary>
|
|
/// GIF format.
|
|
/// </summary>
|
|
Gif,
|
|
|
|
/// <summary>
|
|
/// JPG format.
|
|
/// </summary>
|
|
Jpg,
|
|
|
|
/// <summary>
|
|
/// PNG format.
|
|
/// </summary>
|
|
Png,
|
|
|
|
/// <summary>
|
|
/// WEBP format.
|
|
/// </summary>
|
|
Webp,
|
|
|
|
/// <summary>
|
|
/// SVG format.
|
|
/// </summary>
|
|
Svg,
|
|
}
|
|
}
|