0

縦向きの写真の作成に問題があります。Canvas.Background に VideoBrush を使用します。

 <Grid x:Name="ContentPanel" Grid.Row="0" Margin="12,0,12,0">
    <Canvas Name="PhotoCanvas" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Grid.Row="1">
                    <Canvas.Background>
                        <VideoBrush x:Name="viewCamera">
                            <VideoBrush.RelativeTransform>
                                <CompositeTransform x:Name="cameraViewTransform" CenterX=".5" CenterY=".5"/>
                            </VideoBrush.RelativeTransform>
                        </VideoBrush>
                    </Canvas.Background>
     <Image Name="photoImage"></Image>
                   </Canvas>
            </Grid>

写真を保存し、この写真を photoImage コントロールに追加しました。

Deployment.Current.Dispatcher.BeginInvoke(() =>
{
BitmapImage bImage = new BitmapImage();
bImage.SetSource(e.ImageStream);
photoImage.Source = bImage;
photoImage.Height = PhotoCanvas.ActualHeight;
photoImage.Width = PhotoCanvas.ActualWidth;
Camera.Dispose();
PhotoCanvas.Background = new ImageBrush();
}};

しかし、保存後に横向きの写真が表示されます。

オリエンテーション videoBrush ブレーキすべての私のコードかもしれませんか?:

switch (orientation)
            {
                case PageOrientation.Landscape:
                case PageOrientation.LandscapeLeft:
                    cameraViewTransform.Rotation = 0;
                    break;
                case PageOrientation.LandscapeRight:
                    cameraViewTransform.Rotation = 180;
                    break;
                case PageOrientation.Portrait:
                case PageOrientation.PortraitUp:
                    cameraViewTransform.Rotation = 90;
                    break;
                case PageOrientation.PortraitDown:
                    cameraViewTransform.Rotation = 270;
                    break;
            }
        }

この問題をどのように解決しますか? ありがとうございました!

4

1 に答える 1

1

PhotoCaptureDevice を使用していますか? 試す:

captureDevice.SetProperty(KnownCameraGeneralProperties.EncodeWithOrientation, cameraViewTransform.YourOrientation);

于 2013-09-12T14:13:03.217 に答える