C#实现中文验证码的示例代码

 更新时间:2022年12月12日 10:52:19   作者:芝麻粒儿  
这篇文章主要为大家详细介绍了如何利用C#实现中文验证码功能,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以了解一下

实践过程

效果

代码

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    public string txt = "";
    private void Form1_Load(object sender, EventArgs e)
    {
        CreateImage();
    }
    private void CreateImage()
    {
        //获取GB2312编码页(表) 
        Encoding gb = Encoding.GetEncoding("gb2312");
        //调用函数产生4个随机中文汉字编码 
        object[] bytes = CreateCode(4);
        //根据汉字编码的字节数组解码出中文汉字 
        string str1 = gb.GetString((byte[])Convert.ChangeType(bytes[0], typeof(byte[])));
        string str2 = gb.GetString((byte[])Convert.ChangeType(bytes[1], typeof(byte[])));
        string str3 = gb.GetString((byte[])Convert.ChangeType(bytes[2], typeof(byte[])));
        string str4 = gb.GetString((byte[])Convert.ChangeType(bytes[3], typeof(byte[])));
        txt = str1 + str2 + str3 + str4;
        if (txt == null || txt == String.Empty)
        {
            return;
        }
        Bitmap image = new Bitmap((int)Math.Ceiling((txt.Length * 20.5)), 22);
        Graphics g = Graphics.FromImage(image);
        try
        {
            //生成随机生成器
            Random random = new Random();
            //清空图片背景色
            g.Clear(Color.White);
            //画图片的背景噪音线
            for (int i = 0; i < 2; i++)
            {
                Point tem_Point_1 = new Point(random.Next(image.Width), random.Next(image.Height));
                Point tem_Point_2 = new Point(random.Next(image.Width), random.Next(image.Height));
                g.DrawLine(new Pen(Color.Black), tem_Point_1, tem_Point_2);
            }
            Font font = new Font("宋体", 12, (FontStyle.Bold));
            LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);
            g.DrawString(txt, font, brush, 2, 2);
            //画图片的前景噪音点
            for (int i = 0; i < 100; i++)
            {
                Point tem_point = new Point(random.Next(image.Width),random.Next(image.Height));
                image.SetPixel(tem_point.X,tem_point.Y, Color.FromArgb(random.Next()));
            }
            //画图片的边框线
            g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
            pictureBox1.Image = image;
        }
        catch { }
    }

    /**/
    /* 
    此函数在汉字编码范围内随机创建含两个元素的十六进制字节数组,每个字节数组代表一个汉字,并将 
    四个字节数组存储在object数组中。 
    参数:strlength,代表需要产生的汉字个数 
    */
    public static object[] CreateCode(int strlength)
    { 
        //定义一个字符串数组储存汉字编码的组成元素 
        string[] r=new String [16]{"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"}; 
        Random rnd=new Random(); 
        //定义一个object数组用来 
        object[] bytes=new object[strlength]; 
        /**//*每循环一次产生一个含两个元素的十六进制字节数组,并将其放入bject数组中 
         每个汉字有四个区位码组成 
         区位码第1位和区位码第2位作为字节数组第一个元素 
         区位码第3位和区位码第4位作为字节数组第二个元素 
        */ 
        for(int i=0;i<strlength;i++) 
        { 
            //区位码第1位 
            int r1=rnd.Next(11,14);
            string str_r1 = r[r1].Trim(); 
            //区位码第2位 
            rnd=new Random(r1*unchecked((int)DateTime.Now.Ticks)+i);//更换随机数发生器的种子避免产生重复值 
            int r2; 
            if (r1==13) 
                r2=rnd.Next(0,7); 
            else 
                r2=rnd.Next(0,16); 
            string str_r2 = r[r2].Trim(); 
            //区位码第3位 
            rnd=new Random(r2*unchecked((int)DateTime.Now.Ticks)+i); 
            int r3=rnd.Next(10,16);
            string str_r3 = r[r3].Trim(); 
            //区位码第4位 
            rnd=new Random(r3*unchecked((int)DateTime.Now.Ticks)+i); 
            int r4; 
            if (r3==10) 
            { 
                r4=rnd.Next(1,16); 
            } 
            else if (r3==15) 
            { 
                r4=rnd.Next(0,15); 
            } 
            else 
            { 
                r4=rnd.Next(0,16); 
            }
            string str_r4 = r[r4].Trim(); 
            //定义两个字节变量存储产生的随机汉字区位码 
            byte byte1=Convert.ToByte(str_r1 + str_r2,16); 
            byte byte2=Convert.ToByte(str_r3 + str_r4,16); 
            //将两个字节变量存储在字节数组中 
            byte[] str_r=new byte[]{byte1,byte2}; 
            //将产生的一个汉字的字节数组放入object数组中 
            bytes.SetValue(str_r,i);    
        } 
        return bytes; 
   }

    private void button2_Click(object sender, EventArgs e)
    {
        CreateImage();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        if (txtCode.Text.Trim() == "")
            return;
        else
        {
            if (txtCode.Text.Trim() == txt)
            {
                MessageBox.Show("提示:验证码输入正确!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
            }
            else
            {
                MessageBox.Show("提示:验证码输入错误,请重新输入!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
    } 
}
partial class Form1
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.label1 = new System.Windows.Forms.Label();
            this.txtCode = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // pictureBox1
            // 
            this.pictureBox1.Location = new System.Drawing.Point(192, 18);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(76, 21);
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(13, 22);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(77, 12);
            this.label1.TabIndex = 1;
            this.label1.Text = "输入验证码:";
            // 
            // txtCode
            // 
            this.txtCode.Location = new System.Drawing.Point(86, 18);
            this.txtCode.Name = "txtCode";
            this.txtCode.Size = new System.Drawing.Size(100, 21);
            this.txtCode.TabIndex = 2;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(62, 58);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 3;
            this.button1.Text = "确定";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(143, 58);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(75, 23);
            this.button2.TabIndex = 4;
            this.button2.Text = "刷新";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(283, 93);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.txtCode);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pictureBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "Form1";
            this.Text = "中文验证码";
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.PictureBox pictureBox1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txtCode;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Button button2;
    }

到此这篇关于C#实现中文验证码的示例代码的文章就介绍到这了,更多相关C# 中文验证码内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • C#中使用@声明变量示例(逐字标识符)

    C#中使用@声明变量示例(逐字标识符)

    这篇文章主要介绍了C#中使用@声明变量示例(逐字标识符)在C#中,@符号不仅可以加在字符串常量之前,使字符串不作转义之用,还可以加在变量名之前,使变量名与关键字不冲突,这种用法称为“逐字标识符”,需要的朋友可以参考下
    2015-06-06
  • C#通过yield实现数组全排列的方法

    C#通过yield实现数组全排列的方法

    这篇文章主要介绍了C#通过yield实现数组全排列的方法,以实例形式较为详细的分析了全排列的概念及C#的实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-03-03
  • C# 如何使用OpcUaHelper读写OPC服务器

    C# 如何使用OpcUaHelper读写OPC服务器

    这篇文章给大家介绍C# 如何使用OpcUaHelper读写OPC服务器,本文通过图文实例代码相结合给大家介绍的非常详细,需要的朋友参考下吧
    2023-12-12
  • C#使用smtp发送带附件的邮件实现方法

    C#使用smtp发送带附件的邮件实现方法

    这篇文章主要介绍了C#使用smtp发送带附件的邮件实现方法,可直接将string类型结果保存为附件,实例中备有相应的注释便于理解,需要的朋友可以参考下
    2014-11-11
  • C# WPF后台动态添加控件实战教程

    C# WPF后台动态添加控件实战教程

    最近尝试用wpf在后台动态添加控件,所以下面这篇文章主要给大家介绍了关于C# WPF后台动态添加控件的相关资料,文中通过实例代码介绍的非常详细,需要的朋友可以参考下
    2022-05-05
  • C#实现百分比转小数的方法

    C#实现百分比转小数的方法

    这篇文章主要介绍了C#实现百分比转小数的方法,涉及C#进行数值计算的相关技巧,需要的朋友可以参考下
    2015-06-06
  • C#实现缩放字体的方法

    C#实现缩放字体的方法

    这篇文章主要介绍了C#实现缩放字体的方法,涉及C#操作Matrix实现字体缩放的相关技巧,需要的朋友可以参考下
    2015-06-06
  • 利用C#/VB.NET实现将PDF转为Word

    利用C#/VB.NET实现将PDF转为Word

    众所周知,PDF 文档支持特长文件,集成度和安全可靠性都较高,可有效防止他人对 PDF 内容进行更改,所以在工作中深受大家喜爱。本文将分为两部分介绍如何以编程的方式将 PDF 转换为 Word,需要的可以参考一下
    2022-12-12
  • 基于Unity实现3D版2048游戏的示例代码

    基于Unity实现3D版2048游戏的示例代码

    这篇文章主要为大家详细介绍了如何利用Unity实现简易的3D版2048游戏,文中的示例代码讲解详细,具有一定的学习价值,需要的可以参考一下
    2023-02-02
  • C#编程实现自定义热键的方法

    C#编程实现自定义热键的方法

    这篇文章主要介绍了C#编程实现自定义热键的方法,涉及C#键盘按键设置的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-08-08

最新评论