我正在OutofMemoryException
输入这个特定的代码。
public BitmapImage GetImage(int pageNo)
{
if (!this._isLoaded)
{
this.Load();
}
using (IsolatedStorageFileStream stream = IsolatedStorageFile.GetUserStoreForApplication().OpenFile(this.FileNames[pageNo], FileMode.Open, FileAccess.Read))
{
BitmapImage image = new BitmapImage();
image.SetSource(stream);
return image;
}
}
内存不足异常发生在image.SetSource(stream)
。我无法将 uri 设置为,null
因为我必须返回图像。
解决方法是什么?在这里帮帮我。