C# 对图片加水印

复制代码
using System;
using System.Collections;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Linq;
using System.IO;
using System.Drawing;

namespace WebAppTest
{
    /// <summary>
    /// $codebehindclassname$ 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class upload : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {

            context.Response.ContentType = "text/plain";

            HttpPostedFile hpf =  context.Request.Files["upload"];

            if (hpf.ContentLength > 0)
            {
                string path = context.Server.MapPath("~/resource/image/");

                if (!Directory.Exists(path))
                {

                    Directory.CreateDirectory(path);
                }

                string filename = hpf.FileName;


                string newFilename = DateTime.Now.ToFileTime() + Path.GetExtension(filename);

                string fullname = path + newFilename;

                hpf.SaveAs(fullname);

                string waterMarkFileName = context.Server.MapPath("~/resource/image/logo.png");

                AddWaterMark(fullname, waterMarkFileName);

                context.Response.Write("upload success");

            }
            else
            {
                context.Response.Write("select file");
            }
                
            
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
        /// <summary>
        /// 加上水印
        /// </summary>
        /// <param name="fullname">需要加上水印图片的全路径</param>
        /// <param name="waterMarkFileName">水印图片的全路径</param>
        public void AddWaterMark(string fullname,string waterMarkFileName)
        {

            //D:\projects\VS2008\WebAppTest\WebAppTest\resource\image   结尾没有'\'
            string dicName = Path.GetDirectoryName(fullname);

            string newFilename = DateTime.Now.ToFileTime() + Path.GetExtension(fullname);

            string newFullname = dicName + "/" + newFilename;

            Bitmap bmp = new Bitmap(fullname);

            int width = bmp.Width;

            int height = bmp.Height;

            Bitmap logo = new Bitmap(waterMarkFileName);

            //设置透明
            logo.MakeTransparent();

            using(Graphics g = Graphics.FromImage(bmp))
            {
                //将图片加上边框
                g.DrawRectangle(new Pen(Color.Green,6),new Rectangle(0,0,width,height));

                //加上水印
                g.DrawImage(logo,width-6-logo.Width,height-6-logo.Height);
            
            }

            bmp.Save(newFullname);

            bmp.Dispose();
            logo.Dispose();

        }
    }
}
复制代码

 

posted @   大空白纸  阅读(320)  评论(0编辑  收藏  举报
编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
点击右上角即可分享
微信分享提示