我创建了一个通用应用程序,它能够拍摄我喜欢的照片:
var imgFormat = ImageEncodingProperties.CreateJpeg();
var file = await ApplicationData.Current.LocalFolder.CreateFileAsync(
"photo.jpg",
CreationCollisionOption.GenerateUniqueName);
await _captureManager.CapturePhotoToStorageFileAsync(imgFormat, file);
var photo = new BitmapImage(new Uri(file.Path));
当我打开照片时,我看到它旋转了90度(只有在移植模式下手机拍摄的图像!)。如何将其旋转回来以便正确显示?