首页 > 编程语言 >C# 图片添加水印

C# 图片添加水印

时间:2023-05-05 15:25:54浏览次数:43  
标签:C# System 水印 添加 IO graphics new Drawing

具体实现

        /// <summary>
        /// 图片添加水印
        /// </summary>
        /// <param name="imgPath">需要添加水印的图片地址</param>
        /// <param name="outPath">添加水印后图片输出地址</param>
        /// <param name="watermarkText">水印文字</param>
        /// <param name="pellucidity">水印文字透明度</param>
        /// <param name="fontSize">水印文字大小</param>
        public static void ImageAddWatermark(string imgPath, string outPath, string watermarkText, int pellucidity, int fontSize)
        {
            打开图片以流的形式读取
            System.IO.FileStream fileStream = new System.IO.FileStream(imgPath, System.IO.FileMode.Open);
            System.IO.BinaryReader br = new System.IO.BinaryReader(fileStream);
            byte[] bytes = br.ReadBytes((int)fileStream.Length);
            fileStream.Close();
            br.Close();
            System.IO.MemoryStream memoryStream = new System.IO.MemoryStream(bytes);//将图片字节赋值到新数据流
            //创建新图片
            System.Drawing.Image image = System.Drawing.Image.FromStream(memoryStream);
            int width = image.Width, height = image.Height;
            //新建一个位图宽高为图片宽高
            System.Drawing.Bitmap map = new System.Drawing.Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
            map.SetResolution(72, 72);//分辨率
            System.Drawing.Graphics graphics = System.Drawing.Graphics.FromImage(map);
            graphics.Clear(System.Drawing.Color.FromName("white"));//背景色
            graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High;
            graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;//呈现方式
            graphics.DrawImage(image, new System.Drawing.Rectangle(0, 0, width, height), 0, 0, width, height, System.Drawing.GraphicsUnit.Pixel);
            System.Drawing.Font font = new System.Drawing.Font("宋体", fontSize, System.Drawing.FontStyle.Bold);
            System.Drawing.SizeF crSize = graphics.MeasureString(watermarkText, font);// 测量指定区域
            float y = height - crSize.Height;
            float x = width - crSize.Width;
            System.Drawing.StringFormat StrFormat = new System.Drawing.StringFormat()
            {
                Alignment = System.Drawing.StringAlignment.Center,//水平对其方式
                LineAlignment = System.Drawing.StringAlignment.Center,//垂直对齐方式
            };
            //重复绘制造成透明效果
            System.Drawing.SolidBrush semiTransBrush2 = new System.Drawing.SolidBrush(System.Drawing.Color.FromArgb(pellucidity, 56, 56, 56));
            graphics.DrawString(watermarkText, font, semiTransBrush2, x + 1, y + 1);
            System.Drawing.SolidBrush semiTransBrush = new System.Drawing.SolidBrush(System.Drawing.Color.FromArgb(pellucidity, 176, 176, 176));
            graphics.DrawString(watermarkText, font, semiTransBrush, x, y);
            //保存
            map.Save(outPath, System.Drawing.Imaging.ImageFormat.Jpeg);
            graphics.Dispose();
            image.Dispose();
            map.Dispose();
            System.Diagnostics.Process.Start(outPath);
        }

效果图如下

参考文章:C# asp.net上传图片加水印文字(个人心得) - 大神神风 - 博客园 (cnblogs.com)

 

标签:C#,System,水印,添加,IO,graphics,new,Drawing
From: https://www.cnblogs.com/lwk9527/p/17374201.html

相关文章

  • css中filter的部分特别用法
    1. drop-shadow函数如果给png的图片设置阴影通过box-shadow就会变成这样但可以通过fliter来重新实现 会变成这样.header{//box-shadow:10px10px10px#000;filter:drop-shadow(10px10px10pxrgba(0,0,0,.5));}  2.hue-roate函数.header{filter:......
  • 【SpringBoot】【二】 SpringApplicationRunListeners 监听器执行过程详解
    1 前言我们看到SpringBoot启动的时候,会在每个时机执行监听器,这节我们就来看看,加载监听器的过程我们就不说了哈,上节说过了哈,本节我们主要看:(1)SpringApplicationRunListeners的创建过程(2)监听器的执行时机有哪些(3)监听器的执行过程三个方面来看哈。2 使用在看之前,我们先......
  • C# 获取本地共享目录和网络共享目录
    1.在工程添加对应的cs文件usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.IO;usingSystem.Linq;usingSystem.Net;usingSystem.Runtime.InteropServices;usingSystem.Text;usingSystem.Web;......
  • npm ERR! code EPERM npm ERR! syscall mkdir npm ERR! path C:\Program Files\node
    npm项目初始化代码npminit--yesidea代码安装npmnpmiexperss我输入的时候报错了,如下图所示没关系,只需要手动打开C盘的路径文件找到这个文件,并且把他Ctrl+D删除掉即可之后在运行这串代码就可以啦明显成功了......
  • C# Pdf添加文本水印(iTextSharp)
    第一步通过Nuget添加iTextSharp引用具体实现代码如下:///<summary>///添加文本水印///</summary>///<paramname="pdfPath">pdf文件</param>///<paramname="outPath">输出文件位置</param>......
  • C# 通过iTextSharp实现关键字签字盖章(通过在内容中插入盖章图片的形式)
    此功能通过 iTextSharp 读取PDF文档信息,并循环查找每一页PDF文件,在整个PDF中只要是符合条件的地方都会盖章,如只需要在最后一页盖章,请将方法中For循环去掉,并将PdfContentBytecontentByte=pdfStamper.GetUnderContent(i);parser.ProcessContent<PdfLocation>(i,location);......
  • Apache 配置https虚拟主机
    一、安装带ssl的Apache2.2.211、安装apache之前需要先检查openssl是否安装完毕,yumlist"*openssl*",如果没有用yum安装下即可2、apache安装,网上文档很多,以下是专门针对ssl的编译参数#cd/usr/local/src/tarbag#wgethttp://labs.renren.com/apache-mirror//httpd/httpd-2.2......
  • C# 通过ICSharpCode.SharpZipLib实现文件压缩下载
    通过管理NuGet包添加ICSharpCode.SharpZipLib引用以完成,多文件或者文件夹压缩后下载效果1、压缩文件实体类///<summary>///文件路径集合,文件名集合,压缩文件名///</summary>publicclassFileNameListZip{///<summary>///文件路......
  • Failed to auto-configure a DataSource: 'spring.datasource.url' is not specified
    导入一个新的springbootmaven项目启动一直报这个错,查出来的答案都说是加注解把数据库扫描给排除掉,这种方式其实有点鸵鸟,项目原先是没问题的,现在导入到自己的环境启动不起来,那肯定是不能去改动代码的。排查了一遍,发现是项目中的resources文件没有指定成资源文件,所以找不到数据库......
  • C#生成二维码(【ThoughtWorks.QRCode】【QRCoder】【ZXing.Net】)
    1、通过ThoughtWorks.QRCode实现生成二维码,可直接通过添加Nuget包引用///<summary>///ThoughtWorks.QRCode生成二维码///</summary>///<paramname="filePath">二维码生成后保存地址</param>///<paramname="qrCo......