aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Drawing/ImageFormat.cs
blob: 0172c9754f5143a2b52abb7c136d04a8c4f2df31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
    }
}