asp.net圖片加浮水印代碼

來源:互聯網
上載者:User

<%@ 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=數字就可以了

 

在iis要配置一下jpg訪問

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.