HttpHandler给本站加图片水印

 

1.在项目中添加一个    “ 一般处理程序”   

 

 

 

 

2.在web.config配置文件的<system.web>标记下的<httpHandlers><httpHandlers/>内添中如下标记

       <add  verb="*"  path="image/map/*.jpg"  type="Handler"  />

 

                       *所有请求                 请求Paht路径下.jpg图片时                    用Handler处理

3.添加App_Code文件夹,在其内添加一个类,将 “一般处理程序”  中除头标签外的所有代码复制到该类中

           (因为程序只能识别在App_Code下的类文件,在"一般处理程序中“不能识别,所以要将代码转移:特别注意!)

 

using System;
using System.Web;
using System.Drawing;

 

public class Handler : IHttpHandler
{

 

   public void ProcessRequest(HttpContext context)
    {
       context.Response.ContentType = "text/plain";
       context.Response.Write("Hello World");
    }

 

   public bool IsReusable
    {
      get
       {
          return false;
       }
    }

 

 }

4.改造 上面类中的方法,为其添加水印效果或用5  中的代码、

 

/// <summary>
/// 映射文件后缀名方式的数字水印
/// </summary>
public class CoverHandler : IHttpHandler
{
   private const string WATERMARK_URL = "~/images/hr.gif"; //水印图片
   private const string DEFAULTIMAGE_URL = "~/images/nophoto.jpg"; //默认图片
   public CoverHandler()
    {
    }
   public void ProcessRequest(HttpContext context)

    {
     System.Drawing.Image Cover;
     //判断请求的物理路径中,是否存在文件
     if (File.Exists(context.Request.PhysicalPath))
       { 
          //加载文件
          Cover = Image.FromFile(context.Request.PhysicalPath);
          //加载水印图片
          Image watermark = Image.FromFile(context.Request.MapPath(WATERMARK_URL));
          //实例化画布
          Graphics g = Graphics.FromImage(Cover);
          //在image上绘制水印
          g.DrawImage(watermark, new Rectangle(Cover.Width - watermark.Width, Cover.Height - watermark.Height, watermark.Width, watermark.Height), 0, 0, watermark.Width, watermark.Height, GraphicsUnit.Pixel);
         //释放画布
         g.Dispose();
         //释放水印图片
         watermark.Dispose();
       }
     else
      {
        //加载默认图片
        Cover = Image.FromFile(context.Request.MapPath(DEFAULTIMAGE_URL));
      }
     //设置输出格式
     context.Response.ContentType = "image/jpeg";
     //将图片存入输出流
     Cover.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
     Cover.Dispose();
     context.Response.End();
    }

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

 5.也可作如下代码处理,效果一样。

 public void ProcessRequest(HttpContext context)
    {

//在这里处理所有的*.jpg格式图片请求

 

//获取要请求的资源
string path = context.Request.PhysicalPath;
//加载logo
string logo = context.Server.MapPath("~/images/ibeifeng.png");
//利用要请求的资源创建绘图场景
Image image = Image.FromFile(path);
Graphics g = Graphics.FromImage(image);
//将logo喷在场景的右下角
Image logoImage = Image.FromFile(logo);

float x = (float)(image.Width-60);
float y= (float)(image.Height-35);
g.DrawImage(logoImage,new RectangleF(x,y,60f,35f));
//将处理后的场景内容以图片的方式向客户端做响应
image.Save(context.Response.OutputStream,System.Drawing.Imaging.ImageFormat.Jpeg);
image.Dispose();
logoImage.Dispose();

    }

 

 

 

 

 

posted @ 2012-04-24 16:50  酒沉吟  阅读(277)  评论(0编辑  收藏  举报