asp.net 圖片浮水印經典代碼

來源:互聯網
上載者:User

asp教程.net 圖片浮水印經典代碼

防止圖片被別人轉載使用,我們會對圖片進行浮水印處理。

<%@ WebHandler Language="C#" Class="BookHandler" %>

using System;

using System.Web;

using System.Drawing;

using System.IO;

 

public class BookHandler : IHttpHandler {

    private const string COVERSADDR = "~/Image/"; //封面檔案夾路徑

    private const string WATERMARK_URL = "~/Images/WaterMark.jpg"; //數字浮水印路徑

    private const string DEFAULT_URL = "~/Images/default.jpg"; //預設圖片路徑

  

    public void ProcessRequest (HttpContext context) {

        string path = context.Request.MapPath(COVERSADDR + context.Request.Params["ISBN"].ToString() + ".jpg");

        Image Cover;

        if (File.Exists(path))

        {

            Cover = Image.FromFile(path);

            Image watermark = Image.FromFile(context.Request.MapPath(WATERMARK_URL));

            Graphics g = Graphics.FromImage(Cover);

            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(DEFAULT_URL));

        }

 

        context.Request.ContentType = "image/ipeg";

        Cover.Save(context.Response.OutputStream,System.Drawing.Imaging.ImageFormat.Jpeg);

        Cover.Dispose();

        context.Response.End();

    }

 

    public bool IsReusable {

        get {

            return false;

        }

    }

 

}

最後在頁面或代碼中將串連圖片的路徑都改成

BookCover.ashx?ISBN=數字就可以了

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.