程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net中如何實現水印

asp.net中如何實現水印

編輯: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";<span style="white-space:pre"> </span> //默認圖片
#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
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved