我正在尝试从MemoryStream中获取图像。在MemoryStream中我有一个很大的JPG图像(在转换为位图后,大小从38MB增加到超过1.3GB,评论为有问题)我得到一个OutOfMemory异常。使用较小的图像一切正常。怎么处理这个问题?对我来说,可接受的解决方案是调整存储在_imgArray
以下1.3GB的图像。是否可以在调用Image.FromStream
方法之前执行此操作?
public static Image GetImageFromByteArray(byte[] _imgArray)
{
Image imgFromArray = null;
MemoryStream stream = null;
try
{
stream = new MemoryStream(_imgArray, 0, _imgArray.Length);
imgFromArray = Image.FromStream(stream, true);//this line throws an Out of memory exception
}
catch(OutOfMemoryException)
{
Error.Warning("Das Bild ist zu groß!");
}
catch (Exception ex)
{
throw new FacadeException("Fehler beim Laden des Bildes.", ex);
}
finally
{
if (stream != null)
{
stream.Close();
}
}
return imgFromArray;
}