From 48facb797ed912e4ea6b04b17d1ff190ac2daac4 Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 12 Sep 2018 19:26:21 +0200 Subject: Update to 3.5.2 and .net core 2.1 --- MediaBrowser.Controller/Drawing/IImageEncoder.cs | 49 ------------------------ 1 file changed, 49 deletions(-) delete mode 100644 MediaBrowser.Controller/Drawing/IImageEncoder.cs (limited to 'MediaBrowser.Controller/Drawing/IImageEncoder.cs') diff --git a/MediaBrowser.Controller/Drawing/IImageEncoder.cs b/MediaBrowser.Controller/Drawing/IImageEncoder.cs deleted file mode 100644 index 757448eb2..000000000 --- a/MediaBrowser.Controller/Drawing/IImageEncoder.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; -using MediaBrowser.Model.Drawing; - -namespace MediaBrowser.Controller.Drawing -{ - public interface IImageEncoder - { - /// - /// Gets the supported input formats. - /// - /// The supported input formats. - string[] SupportedInputFormats { get; } - /// - /// Gets the supported output formats. - /// - /// The supported output formats. - ImageFormat[] SupportedOutputFormats { get; } - - /// - /// Encodes the image. - /// - string EncodeImage(string inputPath, DateTime dateModified, string outputPath, bool autoOrient, ImageOrientation? orientation, int quality, ImageProcessingOptions options, ImageFormat outputFormat); - - /// - /// Creates the image collage. - /// - /// The options. - void CreateImageCollage(ImageCollageOptions options); - /// - /// Gets the name. - /// - /// The name. - string Name { get; } - - /// - /// Gets a value indicating whether [supports image collage creation]. - /// - /// true if [supports image collage creation]; otherwise, false. - bool SupportsImageCollageCreation { get; } - - /// - /// Gets a value indicating whether [supports image encoding]. - /// - /// true if [supports image encoding]; otherwise, false. - bool SupportsImageEncoding { get; } - - ImageSize GetImageSize(string path); - } -} -- cgit v1.2.3