From 5655787c1ac9ceedbd78c6c853a7cded33a22d49 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 11 Nov 2016 12:33:10 -0500 Subject: update portable projects --- Emby.Drawing/IImageEncoder.cs | 61 ------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 Emby.Drawing/IImageEncoder.cs (limited to 'Emby.Drawing/IImageEncoder.cs') diff --git a/Emby.Drawing/IImageEncoder.cs b/Emby.Drawing/IImageEncoder.cs deleted file mode 100644 index 73b539899..000000000 --- a/Emby.Drawing/IImageEncoder.cs +++ /dev/null @@ -1,61 +0,0 @@ -using MediaBrowser.Controller.Drawing; -using MediaBrowser.Model.Drawing; -using System; - -namespace Emby.Drawing -{ - public interface IImageEncoder : IDisposable - { - /// - /// Gets the supported input formats. - /// - /// The supported input formats. - string[] SupportedInputFormats { get; } - /// - /// Gets the supported output formats. - /// - /// The supported output formats. - ImageFormat[] SupportedOutputFormats { get; } - /// - /// Crops the white space. - /// - /// The input path. - /// The output path. - void CropWhiteSpace(string inputPath, string outputPath); - /// - /// Encodes the image. - /// - /// The input path. - /// The output path. - /// if set to true [automatic orient]. - /// The width. - /// The height. - /// The quality. - /// The options. - /// The output format. - void EncodeImage(string inputPath, string outputPath, bool autoOrient, int width, int height, 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; } - } -} -- cgit v1.2.3