OutOfMemoryException使用Bitmap调整大图像的大小

时间:2016-01-03 14:42:20

标签: c# bitmap gcallowverylargeobjects

我想在我的网站中调整图像大小,但是当我使用Bitmap加载14032 * 19864(png扩展名)的图像时,会抛出OutOfMemoryException。我的编译器配置是any cpu。 我怀疑运行环境是否为x64。 代码如下:

public ActionResult BimDWGViewer()
{
    Viewer.Uri uri = null;
    string url = Request.Params["u"];
    uri = new Viewer.Uri("image@"+url);
    int width = Int32.Parse(Request.Params["w"]);
    int height = Int32.Parse(Request.Params["h"]);
    Nebula.Nexus.Helpers.ModelUriTranslator.TranslateUri(uri);
    if (uri.IsFileProtocol)
    {
        string path = uri.Path;
        System.Drawing.Bitmap image_source = new System.Drawing.Bitmap(path);
        System.Drawing.Bitmap image_result = new System.Drawing.Bitmap(width,height);
        using (System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(image_result))
        {
            g.DrawImage(image_source, new System.Drawing.Rectangle(0, 0, width, height), new System.Drawing.Rectangle(0, 0, image_source.Width, image_source.Height), System.Drawing.GraphicsUnit.Pixel);
        }
        MemoryStream output = new MemoryStream();
        image_result.Save(output, System.Drawing.Imaging.ImageFormat.Png);
        byte[] res = output.ToArray();
        output.Dispose();
        image_source.Dispose();
        image_result.Dispose();
        return new FileContentResult(res, "image/png");
    }

}

异常发生在

System.Drawing.Bitmap image_source = new System.Drawing.Bitmap(path);

2 个答案:

答案 0 :(得分:2)

确保在配置文件中将gcAllowVeryLargeObjects元素设置为 true

.NET中的单个分配最大为2 GB(即使作为64位进程运行),并且您正在使用的其中一个类很可能在内部执行某些操作,从而进入此限制。这是一个非常常见的问题,修复配置文件应该可以解决它。

更新:根据以下评论,@ majing遇到的问题是Visual Studio在32位版本的IIS Express中启动了他的Web应用程序。配置VS以将IIS作为64位进程启动修复了该问题。

答案 1 :(得分:0)

您是否已禁用"首选32位"?

请参阅http://www.neovolve.com/2015/07/31/disable-prefer-32-bit/