mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
moved new image options to the model
This commit is contained in:
parent
06a7eb78ee
commit
088df67fca
9 changed files with 74 additions and 17 deletions
30
MediaBrowser.Model/Drawing/ImageOutputFormat.cs
Normal file
30
MediaBrowser.Model/Drawing/ImageOutputFormat.cs
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
namespace MediaBrowser.Model.Drawing
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum ImageOutputFormat
|
||||
/// </summary>
|
||||
public enum ImageOutputFormat
|
||||
{
|
||||
/// <summary>
|
||||
/// The original
|
||||
/// </summary>
|
||||
Original,
|
||||
/// <summary>
|
||||
/// The BMP
|
||||
/// </summary>
|
||||
Bmp,
|
||||
/// <summary>
|
||||
/// The GIF
|
||||
/// </summary>
|
||||
Gif,
|
||||
/// <summary>
|
||||
/// The JPG
|
||||
/// </summary>
|
||||
Jpg,
|
||||
/// <summary>
|
||||
/// The PNG
|
||||
/// </summary>
|
||||
Png
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue