aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Drawing/ImageOutputFormat.cs
blob: ec32f64f260a7b0e62b877f4f3816b9e9c5d2d60 (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 ImageOutputFormat
    {
        /// <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
    }
}