主頁 > 知識庫 > asp.net繼承IHttpHandler接口實(shí)現(xiàn)給網(wǎng)站圖片添加水印功能實(shí)例

asp.net繼承IHttpHandler接口實(shí)現(xiàn)給網(wǎng)站圖片添加水印功能實(shí)例

熱門標(biāo)簽:400電話唐山辦理 旅游地圖標(biāo)注線路 威力最大的電銷機(jī)器人 漯河外呼調(diào)研線路 電銷外呼系統(tǒng)是違法的嗎 廣西房產(chǎn)智能外呼系統(tǒng)推薦 地圖標(biāo)注位置怎么弄圖 電銷專用外呼線路 電話機(jī)器人鑰匙扣

本文實(shí)例講述了asp.net繼承IHttpHandler接口實(shí)現(xiàn)給網(wǎng)站圖片添加水印功能。分享給大家供大家參考,具體如下:

先展示圖片效果:

1. 在App_Code下添加類文件,命名為ImageSY 文件內(nèi)容如下

public class ImageSY : IHttpHandler
{
  public ImageSY()
  {
    //
    //TODO: 在此處添加構(gòu)造函數(shù)邏輯
    //
  }
  #region IHttpHandler 成員
  public bool IsReusable
  {
    get { return true; }
  }
  public void ProcessRequest(HttpContext context)
  {
    //獲得請求的物理圖片路徑
    string imagePath = context.Request.PhysicalPath;
    System.Drawing.Image image = null;
    if (File.Exists(imagePath))
    {
      //定義水印文字
      string text = "本圖片來至我的網(wǎng)站";
      //定義水印文字字體大小
      int fontSize = 22;
      //水印文字字體
      Font font = new Font("宋體", fontSize);
      //根據(jù)圖片物理地址加載圖片
      image = System.Drawing.Image.FromFile(imagePath);
      Graphics g = Graphics.FromImage(image);
      //獲取要繪制水印文字所需要的顯示區(qū)域大小
      SizeF size = g.MeasureString(text, font);
      if (size.Width > image.Width || size.Height > image.Height)
      {
      }
      else
      {
        Brush brush = Brushes.Red;
        g.DrawString(text, font, brush, image.Width - size.Width, image.Height - size.Height);
        g.Dispose();
      }
    }
    else
    {
    }
    image.Save(context.Response.OutputStream, ImageFormat.Jpeg);
  }
  #endregion
}

2. 配置WebConfig,添加Location新節(jié)點(diǎn)

location path="images">
 system.web>
  httpHandlers>
  !---對jpg文件添加水印-->
  add verb="*" type="ImageSY" path="*.jpg"/>
  add verb="*" type="ImageSY" path="*.gif"/>
  add verb="*" type="ImageSY" path="*.bmp"/>
  /httpHandlers>
 /system.web>
 /location>

3. 測試,新建aspx頁面,顯示圖片,水印就會自動加上了

更多關(guān)于asp.net相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《asp.net操作json技巧總結(jié)》、《asp.net字符串操作技巧匯總》、《asp.net操作XML技巧總結(jié)》、《asp.net文件操作技巧匯總》、《asp.net ajax技巧總結(jié)專題》及《asp.net緩存操作技巧總結(jié)》。

希望本文所述對大家asp.net程序設(shè)計有所幫助。

您可能感興趣的文章:
  • 如何在ASP.NET Core中給上傳圖片功能添加水印實(shí)例代碼
  • ASP.NET百度Ueditor編輯器實(shí)現(xiàn)上傳圖片添加水印效果
  • Asp.net開發(fā)之webform圖片水印和圖片驗證碼的實(shí)現(xiàn)方法
  • ASP.NET簡單好用功能齊全圖片上傳工具類(水印、縮略圖、裁剪等)
  • Asp.net簡單實(shí)現(xiàn)給圖片增加文字水印
  • asp.net如何在圖片上加水印文字具體實(shí)現(xiàn)
  • asp.net上傳圖片并作處理水印與縮略圖的實(shí)例代碼
  • ASP.NET 圖片加水印防盜鏈實(shí)現(xiàn)代碼
  • asp.net中上傳圖片文件實(shí)現(xiàn)防偽圖片水印并寫入數(shù)據(jù)庫
  • ASP.NET實(shí)現(xiàn)圖片自動添加水印

標(biāo)簽:銅陵 湖北 試駕邀約 焦作 綏化 無錫 湘西 欽州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net繼承IHttpHandler接口實(shí)現(xiàn)給網(wǎng)站圖片添加水印功能實(shí)例》,本文關(guān)鍵詞  asp.net,繼承,IHttpHandler,接口,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net繼承IHttpHandler接口實(shí)現(xiàn)給網(wǎng)站圖片添加水印功能實(shí)例》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp.net繼承IHttpHandler接口實(shí)現(xiàn)給網(wǎng)站圖片添加水印功能實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章