繁体   English   中英

创建具有图像处理器动态横幅

[英]Create dynamic banner with Image Handler

我想创建自己的动态横幅,于是我开始制作图片处理程序,ATM我有这样的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Faeria
{
/// <summary>
/// Summary description for FaeriaImage
/// </summary>
public class FaeriaImage : IHttpHandler
{

    public void ProcessRequest(HttpContext context)
    {
        context.Response.ContentType = "image/jpeg";
        context.Response.Write("~/Images/bg1.jpg");
    }

    public bool IsReusable
    {
        get
        {
            return false;
        }
    }
}

}

但是,当我称之为的“http://本地主机:12361 / FaeriaImage.ashx”我只得到这样的: http://abload.de/image.php?img=1deib0.jpg

当我在自己的网站中调用它时,我没有图像。

我这是怎么了?

我使用过处理程序,据我所知您需要在处理程序中绘制图像。 此代码可能会对您有所帮助,因为它对我有帮助。 试试看

 using (Bitmap image = new Bitmap(context.Server.MapPath("~/Images/bg1.jpg")))
 {
   using(MemoryStream ms = new MemoryStream())
   {
      image.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
      ms.WriteTo(context.Response.OutputStream);
   }
 }

将您的代码更改为以下内容(不是写入而是WriteFile)

public void ProcessRequest(HttpContext context)
{
    context.Response.ContentType = "image/jpeg";
    context.Response.WriteFile("~/Images/bg1.jpg");
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM