文件名称:Asp.net中生成验证码
文件大小:14KB
文件格式:DOCX
更新时间:2016-05-11 03:30:19
生成验证码
//画噪线 for (int i = 0; i < 10; i++) { int x1 = rdm.Next(bmp.Width); int y1 = rdm.Next(bmp.Height); int x2 = rdm.Next(bmp.Width); int y2 = rdm.Next(bmp.Height); Color clr = color[rdm.Next(color.Length)]; gcs.DrawLine(new Pen(clr), x1, y1, x2, y2); }