jellyfin/Emby.Drawing/NullImageEncoder.cs

53 lines
1.7 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
{
/// <summary>
/// A fallback implementation of <see cref="IImageEncoder" />.
/// </summary>
2015-10-26 06:29:32 +01:00
public class NullImageEncoder : IImageEncoder
{
/// <inheritdoc />
2019-02-06 21:31:41 +01:00
public IReadOnlyCollection<string> SupportedInputFormats
=> new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "png", "jpeg", "jpg" };
/// <inheritdoc />
2019-02-06 21:31:41 +01:00
public IReadOnlyCollection<ImageFormat> SupportedOutputFormats
=> new HashSet<ImageFormat>() { ImageFormat.Jpg, ImageFormat.Png };
2015-10-26 06:29:32 +01:00
/// <inheritdoc />
public string Name => "Null Image Encoder";
2015-10-26 06:29:32 +01:00
/// <inheritdoc />
public bool SupportsImageCollageCreation => false;
2015-10-26 06:29:32 +01:00
/// <inheritdoc />
public bool SupportsImageEncoding => false;
2015-10-26 06:29:32 +01:00
/// <inheritdoc />
public ImageDimensions GetImageSize(string path)
=> throw new NotImplementedException();
/// <inheritdoc />
public string EncodeImage(string inputPath, DateTime dateModified, string outputPath, bool autoOrient, ImageOrientation? orientation, int quality, ImageProcessingOptions options, ImageFormat selectedOutputFormat)
{
throw new NotImplementedException();
}
/// <inheritdoc />
public void CreateImageCollage(ImageCollageOptions options)
2017-05-12 06:57:09 +02:00
{
throw new NotImplementedException();
}
2020-03-23 20:05:49 +01:00
/// <inheritdoc />
public string GetImageBlurHash(int xComp, int yComp, string path)
2020-03-23 20:05:49 +01:00
{
throw new NotImplementedException();
}
2015-10-26 06:29:32 +01:00
}
}