如何正确调整CameraCaptureTask中的照片大小?

时间:2014-04-07 11:34:02

标签: c# visual-studio xaml windows-phone cameracapturetask

我使用以下代码在我的应用程序中拍摄照片,但是当我接受照片时,图像会被拉伸,但是当我离开该页面时,再次朝向它,图像分辨率是正确的但是它的一部分图像是黑色的。我的问题是如何在没有拉伸的情况下正确显示图像。

  CameraCaptureTask cam = new CameraCaptureTask();
        cam.Completed += task_Completed;

        cam.Show();



  void task_Completed(object sender, PhotoResult e)
    {
        if (e.TaskResult == TaskResult.OK)
        {
            System.Windows.Media.Imaging.BitmapImage bmp = new System.Windows.Media.Imaging.BitmapImage();
            bmp.SetSource(e.ChosenPhoto);
            imgProfilePic.ImageSource = bmp;
}

和xaml是:

 <Button HorizontalAlignment="Center" 
                        toolkit:TurnstileFeatherEffect.FeatheringIndex="2"
                        toolkit:TiltEffect.IsTiltEnabled="True"
                        x:Name="btnprofilepic" 
                        Width="250"
                        HorizontalContentAlignment="Center" 
                        VerticalContentAlignment="Center"
                        MouseLeave="btnprofilepic_MouseLeave" 
                        Tap="imgProfilePic_Tap"
                        Margin="0,20,0,20"
                        Height="200"                            BorderThickness="0"
                        MouseLeftButtonUp="btnprofilepic_MouseLeftButtonUp"
                        MouseLeftButtonDown="btnprofilepic_MouseLeftButtonDown">
                    <Button.Background>
                        <ImageBrush x:Name="imgProfilePic"
                                Stretch="Fill"   />
                    </Button.Background>
                </Button>

1 个答案:

答案 0 :(得分:1)

在你的xaml make stretch =“Uniform”中因为fill会根据容器拉伸图像......