在MVC ASP.NET中显示运行时生成的图像:ashx vs ImageResult

时间:2010-02-19 04:36:30

标签: asp.net-mvc ashx

我正在引用ashx文件来显示在运行时生成的图像:

<img alt="" style="height: 200px; width: 450px;" 
   id="Img1" src="<%= Url.Content ("~/Helpers/GetImage.ashx?side=Front") %>" />

以下是创建图像的代码。但我担心这不是正确的做法;我应该使用一个返回ImageResult的控制器吗?

if (!string.IsNullOrEmpty(context.Request.Params["side"]))
{

    string ImageType = string.Empty;
    if (context.Request.Params["side"].Equals("Front"))
    { 
        ImageType="FrontJpegBase64";
    }
    else
    {
        ImageType = "BackJpegBase64";
    }

    Log.Info(context.Session["FrontBase64"].ToString());
    byte[] imageByteArray = System.Convert.FromBase64String(context.Session[ImageType].ToString());
    System.IO.MemoryStream imageMemoryStream = new System.IO.MemoryStream(imageByteArray);
    try
    {
        using (System.Drawing.Image img = System.Drawing.Image.FromStream(imageMemoryStream))
        {
            img.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
        }
    }
    catch (System.Exception ex)
    {
        Log.Error(ex, ": ConvertBytesToImage {0} ");
    }
    finally
    {
        imageMemoryStream.Close();
        context.Response.Flush();
    }
}

2 个答案:

答案 0 :(得分:-1)

ashx 比使用控制器操作快<7.2>

答案 1 :(得分:-1)

我认为通过ashx处理它是一种很好的方法。我在我的一些项目中使用它并且效果很好!