From 90e06289dc8a9b97fc48ee136eade94616de1ad6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 12 Nov 2015 14:26:02 -0500 Subject: update image encoding --- MediaBrowser.Controller/Drawing/IImageProcessor.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'MediaBrowser.Controller/Drawing/IImageProcessor.cs') diff --git a/MediaBrowser.Controller/Drawing/IImageProcessor.cs b/MediaBrowser.Controller/Drawing/IImageProcessor.cs index e1e98857f..d42a04f2e 100644 --- a/MediaBrowser.Controller/Drawing/IImageProcessor.cs +++ b/MediaBrowser.Controller/Drawing/IImageProcessor.cs @@ -1,4 +1,5 @@ -using MediaBrowser.Controller.Entities; +using System; +using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Drawing; using MediaBrowser.Model.Entities; @@ -18,7 +19,7 @@ namespace MediaBrowser.Controller.Drawing /// /// The supported input formats. string[] SupportedInputFormats { get; } - + /// /// Gets the image enhancers. /// @@ -38,7 +39,7 @@ namespace MediaBrowser.Controller.Drawing /// The path. /// ImageSize. ImageSize GetImageSize(string path); - + /// /// Adds the parts. /// @@ -77,13 +78,13 @@ namespace MediaBrowser.Controller.Drawing /// To stream. /// Task. Task ProcessImage(ImageProcessingOptions options, Stream toStream); - + /// /// Processes the image. /// /// The options. /// Task. - Task ProcessImage(ImageProcessingOptions options); + Task> ProcessImage(ImageProcessingOptions options); /// /// Gets the enhanced image. -- cgit v1.2.3