2
我的基本Windows Phone應用程序。我需要通過前置攝像頭拍攝照片。 預覽正常,但捕獲的phoho旋轉(90°)。從前置攝像頭捕獲的圖像被旋轉 - Windows Phone 8
CS:
XAML:
<Canvas x:Name="viewfinderCanvas" Height="640" Width="480" Tap="viewfinder_Tapped" Margin="0,138,0,46" Grid.RowSpan="2">
<Canvas.Background>
<VideoBrush x:Name="viewfinderBrush">
<VideoBrush.RelativeTransform>
<CompositeTransform
x:Name="viewfinderTransform"
CenterX="0.5"
CenterY="0.5"
Rotation="-90"/>
</VideoBrush.RelativeTransform>
</VideoBrush>
</Canvas.Background>
</Canvas>
對不起,我的英語...
您可以在旋轉值而不是-90中嘗試90,還可以在頁面的Xaml中的basepage標記中指定SupportedOrientations值和方向值 –
當我將旋轉設置爲90 =相機的顯示是顛倒的。在SupportedOrientations我有肖像... – DrahoS10
你可以刪除supportedOrientations,因爲我已經提到下面,這就是我如何解決這個問題 –