Windows Phone 8.1将图像从imageview获取到BitmapImage

时间:2016-06-09 10:25:03

标签: c# image windows-phone-8.1

我正试图从 -

拍摄一张照片
<Image x:Name="ImagePreview" HorizontalAlignment="Left" Height="492" Margin="10,10,0,0" Stretch="UniformToFill" VerticalAlignment="Top" Width="380" />

ImagePreview用于预览带有灰度,黑白和裁剪原始图像等滤镜的图像。所有这一切的目的是节省手机编辑的图像。

1 个答案:

答案 0 :(得分:0)

非常感谢用户@LovetoCode。要获取图像,您需要从imagePreview投射它。

WriteableBitmap newImg = ImagePreview.Source as WriteableBitmap;

或用于位图: BitmapImage newImg = ImagePreview.Source as BitmapImage;