jellyfin/Emby.Drawing/NullImageEncoder.cs

43 lines
1.4 KiB
C#
Raw Normal View History

using System;
2019-02-06 21:31:41 +01:00
using System.Collections.Generic;
2015-10-26 06:29:32 +01:00
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Model.Drawing;
namespace Emby.Drawing
{
public class NullImageEncoder : IImageEncoder
{
2019-02-06 21:31:41 +01:00
public IReadOnlyCollection<string> SupportedInputFormats
=> new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "png", "jpeg", "jpg" };
public IReadOnlyCollection<ImageFormat> SupportedOutputFormats
=> new HashSet<ImageFormat>() { 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
}
}