From 088df67fcadd75d0da40f4e252a6d6bcc47c7274 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 19 Sep 2013 15:46:19 -0400 Subject: moved new image options to the model --- MediaBrowser.Model/Drawing/ImageOutputFormat.cs | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 MediaBrowser.Model/Drawing/ImageOutputFormat.cs (limited to 'MediaBrowser.Model/Drawing/ImageOutputFormat.cs') diff --git a/MediaBrowser.Model/Drawing/ImageOutputFormat.cs b/MediaBrowser.Model/Drawing/ImageOutputFormat.cs new file mode 100644 index 000000000..6cbe75a7a --- /dev/null +++ b/MediaBrowser.Model/Drawing/ImageOutputFormat.cs @@ -0,0 +1,30 @@ + +namespace MediaBrowser.Model.Drawing +{ + /// + /// Enum ImageOutputFormat + /// + public enum ImageOutputFormat + { + /// + /// The original + /// + Original, + /// + /// The BMP + /// + Bmp, + /// + /// The GIF + /// + Gif, + /// + /// The JPG + /// + Jpg, + /// + /// The PNG + /// + Png + } +} -- cgit v1.2.3