diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-12 14:26:02 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-12 14:26:02 -0500 |
| commit | 90e06289dc8a9b97fc48ee136eade94616de1ad6 (patch) | |
| tree | 8ecf6d82b53011502fbb840db9ed4328aabbaeea /MediaBrowser.Controller/Drawing/IImageProcessor.cs | |
| parent | 4da6275de121c7f8f1d82100588173039e8d0824 (diff) | |
update image encoding
Diffstat (limited to 'MediaBrowser.Controller/Drawing/IImageProcessor.cs')
| -rw-r--r-- | MediaBrowser.Controller/Drawing/IImageProcessor.cs | 11 |
1 files changed, 6 insertions, 5 deletions
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 /// </summary> /// <value>The supported input formats.</value> string[] SupportedInputFormats { get; } - + /// <summary> /// Gets the image enhancers. /// </summary> @@ -38,7 +39,7 @@ namespace MediaBrowser.Controller.Drawing /// <param name="path">The path.</param> /// <returns>ImageSize.</returns> ImageSize GetImageSize(string path); - + /// <summary> /// Adds the parts. /// </summary> @@ -77,13 +78,13 @@ namespace MediaBrowser.Controller.Drawing /// <param name="toStream">To stream.</param> /// <returns>Task.</returns> Task ProcessImage(ImageProcessingOptions options, Stream toStream); - + /// <summary> /// Processes the image. /// </summary> /// <param name="options">The options.</param> /// <returns>Task.</returns> - Task<string> ProcessImage(ImageProcessingOptions options); + Task<Tuple<string, string>> ProcessImage(ImageProcessingOptions options); /// <summary> /// Gets the enhanced image. |
