博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows phone 摄像头得到图片是旋转90°
阅读量:6152 次
发布时间:2019-06-21

本文共 1882 字,大约阅读时间需要 6 分钟。

我上个随笔讲到,windows phone 拍出来的photo如果直接使用是反转了90°的。

研究了很久。。终于发现问题。其实。。这是使用习惯问题。。。

 

CameraCaptureUI 得到的photo 其实是 以第2图水平的方向为基准的。为什么我会这样说呢。。让我们看一下用模拟器拍摄的photo。注意到左边那些字没有。

 

再给一个水平的,可以看的更清楚。YUY2(640x480)

说白了。。其实水平才是别人老外认为的默认视角。。但是有人说。。这样子。。竖着拍的时候就拿到的却会横着显示。。很奇怪。。不怕不怕。。其实我们找到规律。。可以对得到的流进行处理。

下面是代码

public static async Task RotateCaptureImageByDisplayInformationAutoRotationPreferences(IRandomAccessStream inStream, IRandomAccessStream outStream)        {            BitmapDecoder decoder = await BitmapDecoder.CreateAsync(inStream);            BitmapEncoder encoder = await BitmapEncoder.CreateForTranscodingAsync(outStream, decoder);            var ort = DisplayInformation.GetForCurrentView().CurrentOrientation;            Debug.WriteLine(ort);            switch (ort)            {                //The same as Portrait                case DisplayOrientations.None:                    encoder.BitmapTransform.Rotation = BitmapRotation.Clockwise90Degrees;                    break;                //The default view for capture.                 case DisplayOrientations.Landscape:                    encoder.BitmapTransform.Rotation = BitmapRotation.None;                    break;                case DisplayOrientations.Portrait:                    encoder.BitmapTransform.Rotation = BitmapRotation.Clockwise90Degrees;                    break;                case DisplayOrientations.LandscapeFlipped:                    encoder.BitmapTransform.Rotation = BitmapRotation.Clockwise180Degrees;                    break;                case DisplayOrientations.PortraitFlipped:                    encoder.BitmapTransform.Rotation = BitmapRotation.Clockwise270Degrees;                    break;                default:                    break;            }            await encoder.FlushAsync();        }

有了它。。妈妈再也不怕。。等到的图片是旋转90°的了。。哈哈哈

 

转载于:https://www.cnblogs.com/FaDeKongJian/p/5158945.html

你可能感兴趣的文章
JavaScript面向对象编程深入分析(2)
查看>>
linux 编码转换
查看>>
POJ-2287 Tian Ji -- The Horse Racing 贪心规则在动态规划中的应用 Or 纯贪心
查看>>
Windows8/Silverlight/WPF/WP7/HTML5周学习导读(1月7日-1月14日)
查看>>
关于C#导出 文本文件
查看>>
使用native 查询时,对特殊字符的处理。
查看>>
maclean liu的oracle学习经历--长篇连载
查看>>
ECSHOP调用指定分类的文章列表
查看>>
分享:动态库的链接和链接选项-L,-rpath-link,-rpath
查看>>
Javascript一些小细节
查看>>
禁用ViewState
查看>>
Android图片压缩(质量压缩和尺寸压缩)
查看>>
nilfs (a continuent snapshot file system) used with PostgreSQL
查看>>
【SICP练习】150 练习4.6
查看>>
HTTP缓存应用
查看>>
KubeEdge向左,K3S向右
查看>>
DTCC2013:基于网络监听数据库安全审计
查看>>
CCNA考试要点大搜集(二)
查看>>
ajax查询数据库时数据无法更新的问题
查看>>
Kickstart 无人职守安装,终于搞定了。
查看>>