diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-21 11:53:03 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-21 11:58:16 -0500 |
| commit | c71a319685b7a5027112ce3059e7fdff3fff3729 (patch) | |
| tree | 2ad0bf269ae683fa69962af62c3fff441f177afe /Emby.Drawing/IImageEncoder.cs | |
| parent | aaf316884d4e705a9dc47002f492f28649e4821b (diff) | |
use image magick for auto-orientation
Diffstat (limited to 'Emby.Drawing/IImageEncoder.cs')
| -rw-r--r-- | Emby.Drawing/IImageEncoder.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Drawing/IImageEncoder.cs b/Emby.Drawing/IImageEncoder.cs index f36498be7..73b539899 100644 --- a/Emby.Drawing/IImageEncoder.cs +++ b/Emby.Drawing/IImageEncoder.cs @@ -27,13 +27,13 @@ namespace Emby.Drawing /// </summary> /// <param name="inputPath">The input path.</param> /// <param name="outputPath">The output path.</param> - /// <param name="rotationAngle">The rotation angle.</param> + /// <param name="autoOrient">if set to <c>true</c> [automatic orient].</param> /// <param name="width">The width.</param> /// <param name="height">The height.</param> /// <param name="quality">The quality.</param> /// <param name="options">The options.</param> /// <param name="outputFormat">The output format.</param> - void EncodeImage(string inputPath, string outputPath, int rotationAngle, int width, int height, int quality, ImageProcessingOptions options, ImageFormat outputFormat); + void EncodeImage(string inputPath, string outputPath, bool autoOrient, int width, int height, int quality, ImageProcessingOptions options, ImageFormat outputFormat); /// <summary> /// Creates the image collage. |
