0

标题说明了一切,我有一个通用处理程序(.ashx),我需要只使用一个处理程序同时显示一个图像。感谢你!我在我的项目中使用 asp.net 和 c#。我需要显示的所有图像都是动态生成的。我有一个 Web 用户控件,它使用这个处理程序来显示在 asp 图像控件上创建的动态位图图像。但是当我同时使用其中两个 WebControl 时,我遇到了问题,因为两个 WebControl 都显示相同的图像。

ImageHandler.ashx (这些效果并不重要,它只是在用户选择下拉列表中的选项时更改图像,这不是真正的问题。)

public void ProcessRequest(HttpContext context)
{
    string Effect = context.Request.QueryString["Effect"];
    if (Effect == "Normal")
    {
        Bitmap bmp = PanelStepTwo.image;
        context.Response.ContentType = "image/png";
        bmp.Save(context.Response.OutputStream, ImageFormat.Png);
    }
    else if (Effect == "PB")
    {
        Bitmap bmp = PanelStepTwo.imagePB;
        context.Response.ContentType = "image/png";
        bmp.Save(context.Response.OutputStream, ImageFormat.Png);
    }
    else if (Effect == "Sepia")
    {
        Bitmap bmp = PanelStepTwo.imageSepia;
        context.Response.ContentType = "image/png";
        bmp.Save(context.Response.OutputStream, ImageFormat.Png);
    }
}

在这里,处理程序是如何被调用的。(我是索引,因为它是循环调用的) Usuario.Imagens[i] 返回一个 URL,例如,如果 'i' 为 0,则 Usuario.Imagens[0] 返回:@" http://edgeconstrutora. com.br/FotoFacil/Images/he0cy.png "

imgID = i;
var request = WebRequest.Create(Usuario.Imagens[i]);
using (var response = request.GetResponse())
using (var stream = response.GetResponseStream())
{
    image = new Bitmap(stream);
    var ratioX = (double)120 / image.Width;
    var ratioY = (double)120 / image.Height;
    var ratio = Math.Min(ratioX, ratioY);
    var newWidth = (int)(image.Width * ratio);
    var newHeight = (int)(image.Height * ratio);
    proporcao = image.Width / newWidth;
    img.Width = newWidth;
    img.Height = newHeight;
    Effect = "Normal";
    img.ImageUrl = "ImageHandler.ashx?imgID=" + imgID + "&Effect=" + Effect.ToString();
}
4

1 回答 1

0

将 IsReusable 属性设置为 true 以处理多个图像。我上次查看时没有 MSDN 文档。但这就是我用来显示产品图像列表的东西。

于 2013-02-06T02:29:55.343 回答