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
|
|
|
|
{
|
|
|
|
public class NullImageEncoder : IImageEncoder
|
|
|
|
{
|
2019-02-06 13:31:41 -07: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-25 22:29:32 -07:00
|
|
|
|
|
|
|
public void CropWhiteSpace(string inputPath, string outputPath)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2017-06-09 12:24:31 -07:00
|
|
|
public string EncodeImage(string inputPath, DateTime dateModified, string outputPath, bool autoOrient, ImageOrientation? orientation, int quality, ImageProcessingOptions options, ImageFormat selectedOutputFormat)
|
2015-10-25 22:29:32 -07:00
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void CreateImageCollage(ImageCollageOptions options)
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public string Name => "Null Image Encoder";
|
2015-10-25 22:29:32 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public bool SupportsImageCollageCreation => false;
|
2015-10-25 22:29:32 -07:00
|
|
|
|
2019-01-13 13:31:14 -07:00
|
|
|
public bool SupportsImageEncoding => false;
|
2015-10-25 22:29:32 -07:00
|
|
|
|
2019-01-26 05:16:47 -07:00
|
|
|
public ImageDimensions GetImageSize(string path)
|
2017-05-11 21:57:09 -07:00
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
2015-10-25 22:29:32 -07:00
|
|
|
}
|
|
|
|
}
|