C# 加文字水印

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.IO;

public class WaterMark
    {
        /// <summary>
        /// 生成4位字母和数字的验证码图片
        /// </summary>
        /// <returns>验证码的字符串</returns>
        //public static string GenerateImage(string username)
        //{
        //    return CreateImage(username);
        //}

        /// <summary>
        /// 创建验证码图片,并将其写入内存流中
        /// </summary>
        /// <param name="waterText"></param>
        public static string CreateImage(string waterText)
        {
            // 已经存在直接返回
            if (File.Exists(System.AppDomain.CurrentDomain.BaseDirectory + "\\watermarks\\" + waterText + ".png"))
            {
                return "/watermarks/" + waterText + ".png";
            }

            //验证码未设置时,不生成图片
            if (waterText == null || waterText.Trim() == String.Empty)
            {
                return null;
            }
            Bitmap img = new Bitmap(640, 640);
            Graphics g = Graphics.FromImage(img);
            try
            {
                //生成随机生成器
                Random random = new Random();
                //清空图片背景色
                g.Clear(Color.Transparent);
                g.InterpolationMode = InterpolationMode.High; //設定高品質插值法
                g.SmoothingMode = SmoothingMode.HighQuality; //設定高品質,低速度呈現平滑程度
                g.CompositingQuality = CompositingQuality.HighQuality;
                g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
                //画图片的背景噪音线
                //for (int iCount = 0; iCount < 25; iCount++)
                //{
                //    int x1 = random.Next(img.Width);
                //    int x2 = random.Next(img.Width);
                //    int y1 = random.Next(img.Height);
                //    int y2 = random.Next(img.Height);
                //    g.DrawLine(new Pen(Color.Silver), x1, y1, x2, y2);
                //}

                Font font = new Font("Arial", 24, (System.Drawing.FontStyle.Bold));
                System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, img.Width, img.Height),
                    Color.Black, Color.DarkRed, 1.2f, true);

                g.RotateTransform(-30);

                float xpos = 0;
                float ypos = 0;
                // 获取图片的宽和高
                int width = img.Width;
                int height = img.Height;

                // 循环打印文字水印
                for (int i = -width / 2; i < width * 1.5; i += 180)
                {
                    xpos = i;
                    for (int j = -height / 2; j < height * 1.5; j += 80)
                    {
                        ypos = j;
                        g.DrawString(waterText, font, new SolidBrush(Color.FromArgb(50, 210, 210, 210)), xpos, ypos);
                        //g.DrawString(CheckCode, font, brush, 2, 2);
                    }
                }

                //画图片的前景噪音点
                //for (int i = 0; i < 100; i++)
                //{
                //    int x = random.Next(img.Width);
                //    int y = random.Next(img.Height);
                //    img.SetPixel(x, y, Color.FromArgb(random.Next()));
                //}

                //画图片的边框线
                //g.DrawRectangle(new Pen(Color.Silver), 0, 0, img.Width - 1, img.Height - 1);

                System.IO.MemoryStream ms = new System.IO.MemoryStream();
                img.Save(System.AppDomain.CurrentDomain.BaseDirectory + "\\watermarks\\" + waterText + ".png", System.Drawing.Imaging.ImageFormat.Png);
                return "/watermarks/" + waterText + ".png";

                //Response.ClearContent();
                //Response.ContentType = "image/Gif";
                //Response.BinaryWrite(ms.ToArray());
                //return img;
            }
            catch (Exception exp)
            {
                throw exp;
            }
            finally
            {
                g.Dispose();
                img.Dispose();
            }
        }
    }

  

时间: 2024-10-21 11:25:25

C# 加文字水印的相关文章

php给图片加文字水印

<? php /*给图片加文字水印的方法*/ $dst_path = 'http://f4.topitme.com/4/15/11/1166351597fe111154l.jpg'; $dst = imagecreatefromstring(file_get_contents($dst_path)); /*imagecreatefromstring()--从字符串中的图像流新建一个图像,返回一个图像标示符.其表达了从给定字符串得来的图像 图像格式将自己主动监測,仅仅要php支持jpeg,png,

ffmpeg加文字水印并控制水印显示时间或显示周期

#以下脚本保存成.sh文件运行,不会出现中文乱码问题 网上查到用enable关键字控制,实际是draw #加水印 水印位置由x,y,w,h来控制 #ffmpeg编译时需--enable-libfreetype才能用此功能 #!/bin/bash ffmpeg -y -i jiushu.mpg -acodec libfaac -b:a 30k -ar 44100 -r 15 -ac 2 -s 480x272 -vcodec libx264 -refs 2 -x264opts keyint=150:

PHP图片加文字水印和图片水印方法

文字水印 $dst_path = 'dst.jpg'; //创建图片的实例$dst = imagecreatefromstring(file_get_contents($dst_path)); //打上文字$font = './simsun.ttc';//字体$black = imagecolorallocate($dst, 0x00, 0x00, 0x00);//字体颜色imagefttext($dst, 13, 0, 20, 20, $black, $font, '快乐编程'); //输出图

php 图片加水印文字水印

/*给图片加文字水印的方法*/ $dst_path = 'http://f4.topitme.com/4/15/11/1166351597fe111154l.jpg';//保证路径正确 $dst = imagecreatefromstring(file_get_contents($dst_path)); /*imagecreatefromstring()--从字符串中的图像流新建一个图像,返回一个图像标示符,其表达了从给定字符串得来的图像 图像格式将自动监测,只要php支持jpeg,png,gi

php给图片添加文字水印方法汇总

在php中要给图片加水印我们需要给php安装GD库了,这里我们不介绍GD库安装,只介绍怎么利用php给图片添加文字水印的4种方法的汇总.有需要的小伙伴可以参考下. 1: 面向过程的编写方法 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 //指定图片路径 $src = '001.png'; //获取图片信息 $info = getimagesize($src); //获取图片扩展名 $type = image_type_to_ex

缩略图、图片水印图、文字水印图

原文:缩略图.图片水印图.文字水印图 源代码下载地址:http://www.zuidaima.com/share/1550463651056640.htm 文字水印效果:原图 加文字水印后: 加图片水印后:

php图片添加文字水印方法汇总

方法一: <?php header("content-type:text/html;charset=utf-8"); //指定图片路径 $src = "img/a.png"; //获取图片信息 $info = getimagesize($src); //获取图片扩展名 $type = image_type_to_extension($info[2],false); // echo $type; // exit; //动态的把图片导入内存中 $fun = &qu

php文字水印和php图片水印实现代码(二种加水印方法)

文字水印 文字水印就是在图片上加上文字,主要使用gd库的imagefttext方法,并且需要字体文件.效果图如下: $dst_path = 'dst.jpg';//创建图片的实例$dst = imagecreatefromstring(file_get_contents($dst_path));//打上文字$font = './simsun.ttc';//字体$black = imagecolorallocate($dst, 0x00, 0x00, 0x00);//字体颜色imagefttext

ASP.NET(C#)图片加文字、图片水印,神啊,看看吧

ASP.NET(C#)图片加文字.图片水印 一.图片上加文字: //using System.Drawing; //using System.IO; //using System.Drawing.Imaging; private void AddTextToImg(string fileName,string text) { if(!File.Exists(MapPath(fileName))) { throw new FileNotFoundException("The file don't