溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ASP.NET怎么實現(xiàn)圖片自動添加水印

發(fā)布時間:2021-02-05 14:44:37 來源:億速云 閱讀:192 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下ASP.NET怎么實現(xiàn)圖片自動添加水印,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

先建一個類,感覺注釋已經(jīng)很詳細了,有不懂的歡迎評論

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Web;

namespace shuiyin
{
 public class Water : IHttpHandler
 {
  /*
   這個IsReusable的true是可以提高效率但是,會線程不安全
   IHttpHandler實例可以再次使用

   false,會安全一些,效率會低一些
   IHttpHandler的實例就不能使用 
    */
  public bool IsReusable => true;
  //水印
  private const string Water_Url = "~/Images/watermark.png";
  //沒有圖片的時候使用
  private const string None_Picture = "~/Error/default.jpg";

  public void ProcessRequest(HttpContext context)
  {
   //獲取圖片的物理路徑
   string path = context.Request.PhysicalPath;
   Image image;
   //如果我當前項目中有這個圖片,就可以進行加水印操作
   if (File.Exists(path))
   {
    //獲取指定的圖片(要添加水印的圖片)
    image = Image.FromFile(path);
    //再找到,要添加的水印
    Image image_Water = Image.FromFile(context.Server.MapPath(Water_Url));
    //使用畫圖的類,獲取圖片
    Graphics graphics = Graphics.FromImage(image);
    //畫圖方法,第一個參數(shù)就是要添加的水印
    graphics.DrawImage(image_Water,
     //第二個參數(shù)是一個坐標的問題,從x1,y1坐標開始,繪制的水印的長度和寬度,
     //一共四個參數(shù),x1,y1,水印的長度,寬度
     new Rectangle(image.Width - image_Water.Width, image.Height - image_Water.Height, image_Water.Width, image_Water.Height),
     //從上一個參數(shù)獲取的位置開始作為新的區(qū)域
     //新區(qū)域的0,0開始,也是寬度和長度,
     //最后一個參數(shù)就是,像素的問題,多少像素
     0, 0, image_Water.Width, image_Water.Height,GraphicsUnit.Pixel);
    //使用完了,把兩個圖片的資源都釋放掉
    graphics.Dispose();
    image_Water.Dispose();
   }
   else
   {
    //這里是如果沒有指定的圖片的話,就用一個找不到的圖片去代替
    image = Image.FromFile(context.Server.MapPath(None_Picture));
   }
   //新圖片的類型
   context.Response.ContentType = "Image/Jpeg";
   //把新圖片進行保存,輸出流和格式
   image.Save(context.Response.OutputStream, ImageFormat.Jpeg);
   //使用完保存,釋放掉圖片的資源,結(jié)束
   image.Dispose();
   context.Response.End();


  }
 }
}

修改配置文件

ASP.NET怎么實現(xiàn)圖片自動添加水印

<system.webServer>
 <handlers>
  <add verb="*" name="image_Water" path="Images/*.jpg" type="shuiyin.Water"/>
 </handlers>
</system.webServer>

path是加水印圖片的地址,type是那個類的路徑:
也就是命名空間 .(點)類名

一個簡單的web窗體

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ThreePicture_Water.aspx.cs" Inherits="shuiyin.ThreePicture_Water" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <title></title>
</head>
<body>
 <form id="form1" runat="server">
  <div>
   <img src="Images/adv1.jpg" />
   <img src="Images/adv2.jpg" />
   <img src="Images/adv3.jpg" />
  </div>
 </form>
</body>
</html>

效果圖

ASP.NET怎么實現(xiàn)圖片自動添加水印

看完了這篇文章,相信你對“ASP.NET怎么實現(xiàn)圖片自動添加水印”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI