namespace MediaBrowser.Model.Drawing { /// /// Enum ImageOutputFormat. /// public enum ImageFormat { /// /// BMP format. /// Bmp, /// /// GIF format. /// Gif, /// /// JPG format. /// Jpg, /// /// PNG format. /// Png, /// /// WEBP format. /// Webp, /// /// SVG format. /// Svg, } }