aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Drawing/ImageFormat.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-29 14:51:30 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-29 14:51:30 -0500
commit999ad78a0d899c4b9a441933ff68843b0ae3e0a9 (patch)
tree63d2bbc8504595b1c47e36f5e3c16e3fc51b671e /MediaBrowser.Model/Drawing/ImageFormat.cs
parentaaac7e4208a1098bccdc5a7d4c939ef30a3a1e9f (diff)
rework configurations
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageFormat.cs')
-rw-r--r--MediaBrowser.Model/Drawing/ImageFormat.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageFormat.cs b/MediaBrowser.Model/Drawing/ImageFormat.cs
new file mode 100644
index 000000000..0172c9754
--- /dev/null
+++ b/MediaBrowser.Model/Drawing/ImageFormat.cs
@@ -0,0 +1,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
+ }
+}