diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-02-14 03:02:06 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2020-02-14 03:02:06 +0900 |
| commit | 53db52666798e5193fb3e4c0c957de1258ed20c9 (patch) | |
| tree | efd3f41884ce2e506f96920ae0e30e17e2a3e062 /MediaBrowser.Model/Drawing/ImageFormat.cs | |
| parent | 1cb51a8ac79c8cc2b2bde3e4279b18765a5851e6 (diff) | |
| parent | cf2626428c0d4755662855fe6c3e4f439c909de9 (diff) | |
merge branch master into refactor
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageFormat.cs')
| -rw-r--r-- | MediaBrowser.Model/Drawing/ImageFormat.cs | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageFormat.cs b/MediaBrowser.Model/Drawing/ImageFormat.cs index 3639c1594..511c16a4e 100644 --- a/MediaBrowser.Model/Drawing/ImageFormat.cs +++ b/MediaBrowser.Model/Drawing/ImageFormat.cs @@ -1,28 +1,32 @@ namespace MediaBrowser.Model.Drawing { /// <summary> - /// Enum ImageOutputFormat + /// Enum ImageOutputFormat. /// </summary> public enum ImageFormat { /// <summary> - /// The BMP + /// The BMP. /// </summary> Bmp, + /// <summary> - /// The GIF + /// The GIF. /// </summary> Gif, + /// <summary> - /// The JPG + /// The JPG. /// </summary> Jpg, + /// <summary> - /// The PNG + /// The PNG. /// </summary> Png, + /// <summary> - /// The webp + /// The webp. /// </summary> Webp } |
