当前位置: 移动技术网 > IT编程>开发语言>c# > Winform中实现中文验证码(附代码下载)

Winform中实现中文验证码(附代码下载)

2020年03月12日  | 移动技术网IT编程  | 我要评论

场景

中文验证码效果

 

 

 

 

注:

博客主页:

关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

新建一个窗体页面,设计布局如下

 

 

其中显示验证码的是picturebox

然后进入窗体代码中修改为

using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.linq;
using system.text;
using system.windows.forms;
using system.drawing.imaging;
using system.drawing.drawing2d;
namespace chinesecode
{
    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);
                }
            }
        } 
    }
}

 

代码下载

https://download.csdn.net/download/badao_liumang_qizhi/12243420

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网