使用CameraCaptureUI拍摄的照片的顶部和底部变得拉长

时间:2017-02-08 04:28:28

标签: c# image-processing camera uwp windows-applications

CameraCaptureUI captureUI = new CameraCaptureUI();
captureUI.PhotoSettings.Format = CameraCaptureUIPhotoFormat.Jpeg;
captureUI.PhotoSettings.MaxResolution = Windows.Media.Capture.CameraCaptureUIMaxPhotoResolution.HighestAvailable;
StorageFile file = await captureUI.CaptureFileAsync(CameraCaptureUIMode.Photo);

显示相机,我可以预览并单击以捕获图像。捕获的图像显示在原始摄像机图像窗口上的另一个窗口中。我可以裁剪并单击以保存此捕获的图像。

但是,在我单击“保存”后,图像会被拉伸,保存后,图像也会保持拉伸状态。从本质上讲,我捕捉和保存的图像正在被拉伸,

我尝试删除裁剪并且工作正常,但我也需要裁剪功能。

我做错了什么?我应该为这些设置使用任何其他值吗?

如果我没记错的话,这个工作要好到12月份。

此处的任何帮助表示赞赏。屏幕截图添加在下面

enter image description hereenter image description hereenter image description here

0 个答案:

没有答案