jellyfin/MediaBrowser.Controller/Providers/DynamicImageResponse.cs

36 lines
1 KiB
C#
Raw Normal View History

2015-03-13 20:37:19 +01:00
using System;
using System.IO;
using MediaBrowser.Model.Drawing;
2015-10-16 19:06:31 +02:00
using MediaBrowser.Model.MediaInfo;
2015-03-13 20:37:19 +01:00
namespace MediaBrowser.Controller.Providers
{
public class DynamicImageResponse
{
public string Path { get; set; }
2015-10-16 19:06:31 +02:00
public MediaProtocol Protocol { get; set; }
2015-03-13 20:37:19 +01:00
public Stream Stream { get; set; }
public ImageFormat Format { get; set; }
public bool HasImage { get; set; }
public void SetFormatFromMimeType(string mimeType)
{
if (mimeType.EndsWith("gif", StringComparison.OrdinalIgnoreCase))
{
Format = ImageFormat.Gif;
}
else if (mimeType.EndsWith("bmp", StringComparison.OrdinalIgnoreCase))
{
Format = ImageFormat.Bmp;
}
else if (mimeType.EndsWith("png", StringComparison.OrdinalIgnoreCase))
{
Format = ImageFormat.Png;
}
else
{
Format = ImageFormat.Jpg;
}
}
}
}