在wp7中读取本地图像

问题描述:

在我的应用程序中,我需要打开本地图像进行裁剪。我试图通过设置图像的路径作为源的BitmapImage,但它引发了一个错误。如何在WP Mango中将本地图像读取并分配给BitmapImage。在wp7中读取本地图像

private WriteableBitmap ReadLocalImage(string Uri) 
     { 
      StreamResourceInfo sri = null; 
      Uri uri = new Uri(Uri, UriKind.Relative); 
      sri = Application.GetResourceStream(uri); 
      BitmapImage bitmap = new BitmapImage(); 
      bitmap.CreateOptions = BitmapCreateOptions.None; 
      bitmap.SetSource(sri.Stream); 
      WriteableBitmap wb = new WriteableBitmap(bitmap); 
      return wb; 

     } 

使用此方法读取本地图像。