在我的 Windows Phone 8.1 应用程序中,我用相机拍照并将其保存在相机胶卷中,并将图像路径保存在临时对象中:
var picture = library.SavePictureToCameraRoll(fileName, e.ImageStream);
geophoto.ImagePath = picture.GetPath();
在我的应用程序的另一个页面中,我想从相机胶卷中加载这张照片并将保存的路径设置为 Image 对象的来源:
Uri uri = new Uri(App.Current.Geophoto.ImagePath, UriKind.Absolute);
ImageSource imgSource = new BitmapImage(uri);
this.ShutterImage.Source = imgSource;
图像的保存路径例如"file:///C:/Data/Users/Public/Pictures/Camera Roll/201506191442443805.jpg"
在运行时,当我尝试设置新源时,图像变为空白。路径或代码有问题吗?