0
在我的應用程序中,我需要打開本地圖像進行裁剪。我試圖通過設置圖像的路徑作爲源的BitmapImage,但它引發了一個錯誤。如何在WP Mango中將本地圖像讀取並分配給BitmapImage。在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;
}
使用此方法讀取本地圖像。