2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2019-02-06 13:31:41 -07:00
|
|
|
using System.Collections.Generic;
|
2015-10-25 22:29:32 -07:00
|
|
|
using MediaBrowser.Controller.Drawing;
|
|
|
|
using MediaBrowser.Model.Drawing;
|
|
|
|
|
|
|
|
namespace Emby.Drawing
|
|
|
|
{
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <summary>
|
|
|
|
/// A fallback implementation of <see cref="IImageEncoder" />.
|
|
|
|
/// </summary>
|
2015-10-25 22:29:32 -07:00
|
|
|
public class NullImageEncoder : IImageEncoder
|
|
|
|
{
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-02-06 13:31:41 -07:00
|
|
|
public IReadOnlyCollection<string> SupportedInputFormats
|
|
|
|
=> new HashSet<string>(StringComparer.OrdinalIgnoreCase) { "png", "jpeg", "jpg" };
|
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-02-06 13:31:41 -07:00
|
|
|
public IReadOnlyCollection<ImageFormat> SupportedOutputFormats
|
|
|
|
=> new HashSet<ImageFormat>() { ImageFormat.Jpg, ImageFormat.Png };
|
2015-10-25 22:29:32 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public string Name => "Null Image Encoder";
|
2015-10-25 22:29:32 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public bool SupportsImageCollageCreation => false;
|
2015-10-25 22:29:32 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-13 13:31:14 -07:00
|
|
|
public bool SupportsImageEncoding => false;
|
2015-10-25 22:29:32 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-26 05:16:47 -07:00
|
|
|
public ImageDimensions GetImageSize(string path)
|
2019-08-11 07:52:37 -07:00
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2021-04-06 11:02:06 -07:00
|
|
|
public string EncodeImage(string inputPath, DateTime dateModified, string outputPath, bool autoOrient, ImageOrientation? orientation, int quality, ImageProcessingOptions options, ImageFormat outputFormat)
|
2019-08-11 07:52:37 -07:00
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-08-21 10:53:55 -07:00
|
|
|
public void CreateImageCollage(ImageCollageOptions options, string? libraryName)
|
2017-05-11 21:57:09 -07:00
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2020-03-23 12:05:49 -07:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-06-01 08:12:49 -07:00
|
|
|
public string GetImageBlurHash(int xComp, int yComp, string path)
|
2020-03-23 12:05:49 -07:00
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2015-10-25 22:29:32 -07:00
|
|
|
}
|
|
|
|
}
|