jellyfin/MediaBrowser.Controller/Drawing/IImageEncoder.cs

50 lines
1.7 KiB
C#
Raw Normal View History

2016-11-11 18:33:10 +01:00
using System;
2015-04-08 16:38:02 +02:00
using MediaBrowser.Model.Drawing;
2016-11-11 18:33:10 +01:00
namespace MediaBrowser.Controller.Drawing
2015-04-08 16:38:02 +02:00
{
public interface IImageEncoder : IDisposable
{
/// <summary>
/// Gets the supported input formats.
/// </summary>
/// <value>The supported input formats.</value>
string[] SupportedInputFormats { get; }
/// <summary>
/// Gets the supported output formats.
/// </summary>
/// <value>The supported output formats.</value>
ImageFormat[] SupportedOutputFormats { get; }
2017-05-15 04:27:58 +02:00
2015-04-08 16:38:02 +02:00
/// <summary>
/// Encodes the image.
/// </summary>
2017-06-09 21:24:31 +02:00
string EncodeImage(string inputPath, DateTime dateModified, string outputPath, bool autoOrient, ImageOrientation? orientation, int quality, ImageProcessingOptions options, ImageFormat outputFormat);
2015-04-08 16:38:02 +02:00
/// <summary>
/// Creates the image collage.
/// </summary>
/// <param name="options">The options.</param>
void CreateImageCollage(ImageCollageOptions options);
2015-04-09 07:20:23 +02:00
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
string Name { get; }
2015-10-26 06:29:32 +01:00
/// <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; }
2017-05-12 06:57:09 +02:00
ImageSize GetImageSize(string path);
2015-04-08 16:38:02 +02:00
}
}