jellyfin/Emby.Drawing/NullImageEncoder.cs

46 lines
1.3 KiB
C#
Raw Normal View History

using System;
2015-10-26 06:29:32 +01:00
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Model.Drawing;
namespace Emby.Drawing
{
public class NullImageEncoder : IImageEncoder
{
public string[] SupportedInputFormats =>
new[]
2015-10-26 06:29:32 +01:00
{
"png",
"jpeg",
"jpg"
};
2015-10-26 06:29:32 +01:00
public ImageFormat[] SupportedOutputFormats => new[] { ImageFormat.Jpg, ImageFormat.Png };
2015-10-26 06:29:32 +01:00
public void CropWhiteSpace(string inputPath, string outputPath)
{
throw new NotImplementedException();
}
2017-06-09 21:24:31 +02:00
public string EncodeImage(string inputPath, DateTime dateModified, string outputPath, bool autoOrient, ImageOrientation? orientation, int quality, ImageProcessingOptions options, ImageFormat selectedOutputFormat)
2015-10-26 06:29:32 +01:00
{
throw new NotImplementedException();
}
public void CreateImageCollage(ImageCollageOptions options)
{
throw new NotImplementedException();
}
public string Name => "Null Image Encoder";
2015-10-26 06:29:32 +01:00
public bool SupportsImageCollageCreation => false;
2015-10-26 06:29:32 +01:00
public bool SupportsImageEncoding => false;
2015-10-26 06:29:32 +01:00
public ImageDimensions GetImageSize(string path)
2017-05-12 06:57:09 +02:00
{
throw new NotImplementedException();
}
2015-10-26 06:29:32 +01:00
}
}