aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Drawing/ImageFormat.cs
blob: 511c16a4e27916196487e411a383d8e1a8216037 (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
31
32
33
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
    }
}