上传并加文字水印 上传并加图片水印

14 篇文章 0 订阅
13 篇文章 0 订阅

.net加水印2008-08-09 16:25前台

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<HTML>
<HEAD>
<title>MikeCat_WaterMark</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<INPUT id="File1" style="Z-INDEX: 101; LEFT: 144px; WIDTH: 400px; POSITION: absolute; TOP: 88px;

HEIGHT: 22px"
type="file" size="47" name="File1" runat="server">
<asp:Button id="Button1" style="Z-INDEX: 102; LEFT: 176px; POSITION: absolute; TOP: 136px"

runat="server"
Text="上传并加文字水印"></asp:Button>
<asp:Button id="Button2" style="Z-INDEX: 103; LEFT: 352px; POSITION: absolute; TOP: 136px"

runat="server"
Text="上传并加图片水印"></asp:Button>
<asp:RequiredFieldValidator id="RequiredFieldValidator1" style="Z-INDEX: 104; LEFT: 552px; POSITION:

absolute; TOP: 88px"
runat="server" ErrorMessage="*" ControlToValidate="File1"></asp:RequiredFieldValidator>
<DIV style="Z-INDEX: 105; LEFT: 16px; WIDTH: 100%; POSITION: absolute; TOP: 168px; HEIGHT: 100px"
ms_positioning="GridLayout"></DIV>
<asp:Label id="Label1" style="Z-INDEX: 107; LEFT: 176px; POSITION: absolute; TOP: 40px"

runat="server">武汉凯凯</asp:Label>
</form>
</body>
</HTML>

后台

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.IO;

public partial class _Default : System.Web.UI.Page
{

    private void Page_Load(object sender, System.EventArgs e)
    {
        // 在此处放置用户代码以初始化页面
        if (!Page.IsPostBack)
        {
            Image1.ImageUrl = "aa.gif";
        }
    }

    #region Web 窗体设计器生成的代码
    override protected void OnInit(EventArgs e)
    {
        //
        // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
        //
        InitializeComponent();
        base.OnInit(e);
    }

    /// <summary>
    /// 设计器支持所需的方法 - 不要使用代码编辑器修改
    /// 此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {
        this.Button1.Click += new System.EventHandler(this.Button1_Click);
        this.Button2.Click += new System.EventHandler(this.Button2_Click);
        this.Load += new System.EventHandler(this.Page_Load);

    }
    #endregion

    private void Button1_Click(object sender, System.EventArgs e)
    {
        if (File1.PostedFile.FileName.Trim() != "")
        {
            //上传文件
            string extension = Path.GetExtension(File1.PostedFile.FileName).ToLower();
            string fileName = DateTime.Now.ToString("yyyyMMddhhmmss");
            string path = Server.MapPath(".") + "/upload/" + fileName + extension;
            File1.PostedFile.SaveAs(path);

            //加文字水印,注意,这里的代码和以下加图片水印的代码不能共存
            System.Drawing.Image image = System.Drawing.Image.FromFile(path);
            Graphics g = Graphics.FromImage(image);
            g.DrawImage(image, 0, 0, image.Width, image.Height);
            Font f = new Font("Verdana", 16);
            Brush b = new SolidBrush(Color.Blue);
            string addText = "武汉凯凯";
            g.DrawString(addText, f, b, 10, 10);
            g.Dispose();

            //保存加水印过后的图片,删除原始图片
            string newPath = Server.MapPath(".") + "/upload/" + fileName + "_new" + extension;
            image.Save(newPath);
            image.Dispose();
            if (File.Exists(path))
            {
                File.Delete(path);
            }
            // Response.Redirect(newPath);
        }

    }

    private void Button2_Click(object sender, System.EventArgs e)
    {
        //上传文件
        string extension = Path.GetExtension(File1.PostedFile.FileName).ToUpper();
        string fileName = DateTime.Now.ToString("yyyyMMddhhmmss");
        string path = Server.MapPath(".") + "/upload/" + fileName + extension;
        File1.PostedFile.SaveAs(path);


        //加图片水印
        System.Drawing.Image image = System.Drawing.Image.FromFile(path);
        System.Drawing.Image copyImage = System.Drawing.Image.FromFile(Server.MapPath(".") + "/lz.jpg");
        Graphics g = Graphics.FromImage(image);
        g.DrawImage(copyImage, new Rectangle(image.Width - copyImage.Width, image.Height - copyImage.Height,

        copyImage.Width, copyImage.Height), 0, 0, copyImage.Width, copyImage.Height, GraphicsUnit.Pixel);
        g.Dispose();

        //保存加水印过后的图片,删除原始图片
        string newPath = Server.MapPath(".") + "/upload/" + fileName + "_new" + extension;
        image.Save(newPath);
        image.Dispose();
        if (File.Exists(path))
        {
            File.Delete(path);
        }

    }
}

 

 

// Set the page's content type to JPEG files
        // and clear all response headers.
        Response.ContentType = "image/jpeg";
        // set image name
        //Response.AddHeader("Content-Disposition", "attachment;   filename=a.jpg");
        Response.Clear();
        // Buffer response so that page is sent
        // after processing is complete.
        Response.BufferOutput = true;


        // Create a bitmap and use it to create a
        // Graphics object.
        //Bitmap bmp = new Bitmap(
        //    width, height, PixelFormat.Format24bppRgb);
        Bitmap bmp = new Bitmap(Server.MapPath("//bb//100_1216.JPG"));
        System.Drawing.Bitmap bmp1 = new Bitmap(Server.MapPath("//bb//ni_png_0033.png"));
        Graphics g = Graphics.FromImage(bmp);
        //右下角
        //g.DrawImage(bmp1, new Rectangle(bmp.Width - bmp1.Width, bmp.Height - bmp1.Height,
        //  bmp1.Width, bmp1.Height), 0, 0, bmp1.Width, bmp1.Height, GraphicsUnit.Pixel);
        //中下
        g.DrawImage(bmp1, new Rectangle(bmp.Width/2 + bmp1.Width/2, bmp.Height/4*3 + bmp1.Height/2,
          bmp1.Width, bmp1.Height), 0, 0, bmp1.Width, bmp1.Height, GraphicsUnit.Pixel);
        // Save the bitmap to the response stream and
        // convert it to JPEG format.
        bmp.Save(Response.OutputStream, ImageFormat.Jpeg);
        // Release memory used by the Graphics object
        // and the bitmap.
        g.Dispose();
        bmp.Dispose();
        bmp1.Dispose();
        // Send the output to the client.
        Response.Flush();
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

fanhgye

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值