aboutsummaryrefslogtreecommitdiff
path: root/Emby.Drawing/IImageEncoder.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-21 03:23:02 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-22 23:50:04 -0500
commited49e931182b240f623e96422604e75a61d50e91 (patch)
tree367016cb9f5c87a33b228830c4ff3736f16d043b /Emby.Drawing/IImageEncoder.cs
parent02ad5527926a3081b828300546b6945978f7da04 (diff)
support photo orientation
Diffstat (limited to 'Emby.Drawing/IImageEncoder.cs')
-rw-r--r--Emby.Drawing/IImageEncoder.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Drawing/IImageEncoder.cs b/Emby.Drawing/IImageEncoder.cs
index bfd382bb7..f36498be7 100644
--- a/Emby.Drawing/IImageEncoder.cs
+++ b/Emby.Drawing/IImageEncoder.cs
@@ -27,12 +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="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 width, int height, int quality, ImageProcessingOptions options, ImageFormat outputFormat);
+ void EncodeImage(string inputPath, string outputPath, int rotationAngle, int width, int height, int quality, ImageProcessingOptions options, ImageFormat outputFormat);
/// <summary>
/// Creates the image collage.