Skip to content

Commit

Permalink
ignore exif rotation on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Baum committed Nov 12, 2015
1 parent a0f338b commit c60c5c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private async Task<IRandomAccessStream> ResizeJpegStreamAsync(int maxPixelDimens
BitmapPixelFormat.Rgba8,
BitmapAlphaMode.Straight,
transform,
ExifOrientationMode.RespectExifOrientation,
ExifOrientationMode.IgnoreExifOrientation,
ColorManagementMode.DoNotColorManage);

var destinationStream = new InMemoryRandomAccessStream();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private async Task<IRandomAccessStream> ResizeJpegStreamAsync(int maxPixelDimens
BitmapPixelFormat.Rgba8,
BitmapAlphaMode.Straight,
transform,
ExifOrientationMode.RespectExifOrientation,
ExifOrientationMode.IgnoreExifOrientation,
ColorManagementMode.DoNotColorManage);

var destinationStream = new InMemoryRandomAccessStream();
Expand Down

0 comments on commit c60c5c6

Please sign in to comment.