我正在制作一个使用许多图像的应用程序。该应用程序从服务器获取图像,并一次下载一个。在许多图像之后,位图的创建返回异常,但我不知道如何解决这个问题。这是我下载图像的功能:
public static Bitmap getImageFromWholeURL(String sURL)
{
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(sURL);
myRequest.Method = "GET";
// If it does not exist anything on the url, then return null
try
{
HttpWebResponse myResponse = (HttpWebResponse)myRequest.GetResponse();
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(myResponse.GetResponseStream());
myResponse.Close();
return bmp;
}
catch (Exception e)
{
return null;
}
}
有谁可以帮我离开这里吗?提前致谢!