2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
2020-08-31 07:35:37 -07:00
|
|
|
#nullable enable
|
2020-08-22 12:56:24 -07:00
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2019-02-06 13:31:41 -07:00
|
|
|
using System.Collections.Generic;
|
2018-12-27 16:27:57 -07:00
|
|
|
using MediaBrowser.Model.Drawing;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Drawing
|
|
|
|
{
|
|
|
|
public interface IImageEncoder
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the supported input formats.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The supported input formats.</value>
|
2019-02-06 13:31:41 -07:00
|
|
|
IReadOnlyCollection<string> SupportedInputFormats { get; }
|
2019-12-13 12:57:23 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the supported output formats.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The supported output formats.</value>
|
2019-02-06 13:31:41 -07:00
|
|
|
IReadOnlyCollection<ImageFormat> SupportedOutputFormats { get; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
2019-12-13 12:57:23 -07:00
|
|
|
/// Gets the display name for the encoder.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
2019-12-13 12:57:23 -07:00
|
|
|
/// <value>The display name.</value>
|
2018-12-27 16:27:57 -07:00
|
|
|
string Name { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a value indicating whether [supports image collage creation].
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if [supports image collage creation]; otherwise, <c>false</c>.</value>
|
|
|
|
bool SupportsImageCollageCreation { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a value indicating whether [supports image encoding].
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if [supports image encoding]; otherwise, <c>false</c>.</value>
|
|
|
|
bool SupportsImageEncoding { get; }
|
|
|
|
|
2019-12-13 12:57:23 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Get the dimensions of an image from the filesystem.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="path">The filepath of the image.</param>
|
|
|
|
/// <returns>The image dimensions.</returns>
|
2019-01-26 05:16:47 -07:00
|
|
|
ImageDimensions GetImageSize(string path);
|
2019-08-11 07:52:37 -07:00
|
|
|
|
2020-03-23 12:05:49 -07:00
|
|
|
/// <summary>
|
2020-05-25 14:50:29 -07:00
|
|
|
/// Gets the blurhash of an image.
|
2020-03-23 12:05:49 -07:00
|
|
|
/// </summary>
|
2020-06-01 08:12:49 -07:00
|
|
|
/// <param name="xComp">Amount of X components of DCT to take.</param>
|
|
|
|
/// <param name="yComp">Amount of Y components of DCT to take.</param>
|
2020-03-23 12:05:49 -07:00
|
|
|
/// <param name="path">The filepath of the image.</param>
|
|
|
|
/// <returns>The blurhash.</returns>
|
2020-06-01 08:12:49 -07:00
|
|
|
string GetImageBlurHash(int xComp, int yComp, string path);
|
2020-03-23 12:05:49 -07:00
|
|
|
|
2019-08-11 07:52:37 -07:00
|
|
|
/// <summary>
|
2019-12-13 12:57:23 -07:00
|
|
|
/// Encode an image.
|
2019-08-11 07:52:37 -07:00
|
|
|
/// </summary>
|
|
|
|
string EncodeImage(string inputPath, DateTime dateModified, string outputPath, bool autoOrient, ImageOrientation? orientation, int quality, ImageProcessingOptions options, ImageFormat outputFormat);
|
|
|
|
|
|
|
|
/// <summary>
|
2019-12-13 12:57:23 -07:00
|
|
|
/// Create an image collage.
|
2019-08-11 07:52:37 -07:00
|
|
|
/// </summary>
|
2019-12-13 12:57:23 -07:00
|
|
|
/// <param name="options">The options to use when creating the collage.</param>
|
2020-08-21 10:53:55 -07:00
|
|
|
/// <param name="libraryName">Optional. </param>
|
|
|
|
void CreateImageCollage(ImageCollageOptions options, string? libraryName);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|