zoukankan      html  css  js  c++  java
  • asp.net中水印的实现代码

    水印是为了防止别盗用我们的图片.

    两种方式实现水印效果

    1)可以在用户上传时添加水印.

    a)   好处:与2种方法相比,用户每次读取此图片时,服务器直接发送给客户就行了.

    b)   缺点:破坏了原始图片.

    2)通过全局的一般处理程序,当用户请求这张图片时,加水印.

    a)   好处:原始图片没有被破坏

    b)   缺点:用户每次请求时都需要对请求的图片进行加水印处理,浪费的服务器的资源.

    代码实现第二种方式:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Drawing;
    using System.IO;
    
    namespace BookShop.Web
    {
        public class WaterMark : IHttpHandler
        {
    
            private const string WATERMARK_URL = "~/Images/watermark.jpg";        //水印图片
            private const string DEFAULTIMAGE_URL = "~/Images/default.jpg";      //默认图片
            #region IHttpHandler 成员
    
            public bool IsReusable
            {
                get { return false; }
            }
    
            public void ProcessRequest(HttpContext context)
            {
    
                //context.Request.PhysicalPath  //获得用户请求的文件物理路径
    
                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();
            }
    
            #endregion
        }
    }
    


  • 相关阅读:
    课程作业四 生成随机数并求和,大数运算
    课程作业三 string,char操作
    课程作业二 类内静态内容(代码块,静态变量),构造函数,非静态代码块执行顺序
    十一作业 java数值范围方面训练
    课程作业一 将字符串型数组里的数字相加
    NABCD需求分析
    人月神话阅读笔记01
    软件工程第五周总结
    清明第三天
    清明第二天安排
  • 原文地址:https://www.cnblogs.com/james1207/p/3343365.html
Copyright © 2011-2022 走看看