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

本文关键字:调整 照片 CameraCaptureTask | 更新日期: 2023-09-27 17:57:02

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

  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>

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

在您的 xaml 中,使 strech ="统一",因为填充将根据容器划线图像......