分享好友 编程语言首页 频道列表

WinForm生成验证码图片的方法

C#教程  2016-06-20 07:380

本文实例讲述了WinForm生成验证码图片的方法。分享给大家供大家参考,具体如下:

1、创建ValidCode类:

public class ValidCode
{
  #region Private Fields
  private const double PI = 3.1415926535897932384626433832795;
  private const double PI2 = 6.283185307179586476925286766559;
  //private readonly int _wordsLen = 4;
  private int _len;
  private CodeType _codetype;
  private readonly Single _jianju = (float)18.0;
  private readonly Single _height = (float)24.0;
  private string _checkCode;
  #endregion
  #region Public Property
  public string CheckCode
  {
   get
   {
    return _checkCode;
   }
  }
  #endregion
  #region Constructors
  /// <summary>
  /// public constructors
  /// </summary>
  /// <param name="len"> 验证码长度 </param>
  /// <param name="ctype"> 验证码类型:字母、数字、字母+ 数字 </param>
  public ValidCode(int len, CodeType ctype)
  {
   this._len = len;
   this._codetype = ctype;
  }
  #endregion
  #region Public Field
  public enum CodeType { Words, Numbers, Characters, Alphas }
  #endregion
  #region Private Methods
  private string GenerateNumbers()
  {
   string strOut = "";
   System.Random random = new Random();
   for (int i = 0; i < _len; i++)
   {
    string num = Convert.ToString(random.Next(10000) % 10);
    strOut += num;
   }
   return strOut.Trim();
  }
  private string GenerateCharacters()
  {
   string strOut = "";
   System.Random random = new Random();
   for (int i = 0; i < _len; i++)
   {
    string num = Convert.ToString((char)(65 + random.Next(10000) % 26));
    strOut += num;
   }
   return strOut.Trim();
  }
  //
  private string GenerateAlphas()
  {
   string strOut = "";
   string num = "";
   System.Random random = new Random();
   for (int i = 0; i < _len; i++)
   {
    if (random.Next(500) % 2 == 0)
    {
     num = Convert.ToString(random.Next(10000) % 10);
    }
    else
    {
     num = Convert.ToString((char)(65 + random.Next(10000) % 26));
    }
    strOut += num;
   }
   return strOut.Trim();
  }
  private System.Drawing.Bitmap TwistImage(Bitmap srcBmp, bool bXDir, double dMultValue, double dPhase)
  {
   System.Drawing.Bitmap destBmp = new Bitmap(srcBmp.Width, srcBmp.Height);
   // 将位图背景填充为白色
   System.Drawing.Graphics graph = System.Drawing.Graphics.FromImage(destBmp);
   graph.FillRectangle(new SolidBrush(System.Drawing.Color.White), 0, 0, destBmp.Width, destBmp.Height);
   graph.Dispose();
   double dBaseAxisLen = bXDir  (double)destBmp.Height : (double)destBmp.Width;
   for (int i = 0; i < destBmp.Width; i++)
   {
    for (int j = 0; j < destBmp.Height; j++)
    {
     double dx = 0;
     dx = bXDir  (PI2 * (double)j) / dBaseAxisLen : (PI2 * (double)i) / dBaseAxisLen;
     dx += dPhase;
     double dy = Math.Sin(dx);
     // 取得当前点的颜色
     int nOldX = 0, nOldY = 0;
     nOldX = bXDir  i + (int)(dy * dMultValue) : i;
     nOldY = bXDir  j : j + (int)(dy * dMultValue);
     System.Drawing.Color color = srcBmp.GetPixel(i, j);
     if (nOldX >= 0 && nOldX < destBmp.Width
      && nOldY >= 0 && nOldY < destBmp.Height)
     {
      destBmp.SetPixel(nOldX, nOldY, color);
     }
    }
   }
   return destBmp;
  }
  #endregion
  #region Public Methods
  public Stream CreateCheckCodeImage()
  {
   string checkCode;
   switch (_codetype)
   {
    case CodeType.Alphas:
     checkCode = GenerateAlphas();
     break;
    case CodeType.Numbers:
     checkCode = GenerateNumbers();
     break;
    case CodeType.Characters:
     checkCode = GenerateCharacters();
     break;
    default:
     checkCode = GenerateAlphas();
     break;
   }
   this._checkCode = checkCode;
   MemoryStream ms = null;
   //
   if (checkCode == null || checkCode.Trim() == String.Empty)
    return null;
   Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * _jianju)), (int)_height);
   Graphics g = Graphics.FromImage(image);
   try
   {
    Random random = new Random();
    g.Clear(Color.White);
    // 画图片的背景噪音线
    for (int i = 0; i < 18; i++)
    {
     int x1 = random.Next(image.Width);
     int x2 = random.Next(image.Width);
     int y1 = random.Next(image.Height);
     int y2 = random.Next(image.Height);
     g.DrawLine(new Pen(Color.FromArgb(random.Next()), 1), x1, y1, x2, y2);
    }
    Font font = new System.Drawing.Font("Times New Roman", 14, System.Drawing.FontStyle.Bold);
    LinearGradientBrush brush = new LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);
    if (_codetype != CodeType.Words)
    {
     for (int i = 0; i < checkCode.Length; i++)
     {
      g.DrawString(checkCode.Substring(i, 1), font, brush, 2 + i * _jianju, 1);
     }
    }
    else
    {
     g.DrawString(checkCode, font, brush, 2, 2);
    }
    // 画图片的前景噪音点
    for (int i = 0; i < 150; i++)
    {
     int x = random.Next(image.Width);
     int y = random.Next(image.Height);
     image.SetPixel(x, y, Color.FromArgb(random.Next()));
    }
    // 画图片的波形滤镜效果
    if (_codetype != CodeType.Words)
    {
     image = TwistImage(image, true, 3, 1);
    }
    // 画图片的边框线
    g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);
    ms = new System.IO.MemoryStream();
    image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
   }
   finally
   {
    g.Dispose();
    image.Dispose();
   }
   return ms;
  }
  #endregion
}

2、产生验证码图片代码:

//参数一:产生几个字符的验证码图片 参数二:验证码的形式(数字、字母、数字字母混合都有)
ValidCode validCode = new ValidCode(5, ValidCode.CodeType.Alphas);
this.pictureBox2.Image = Bitmap.FromStream(validCode.CreateCheckCodeImage());

更多关于C#相关内容感兴趣的读者可查看本站专题:《C#常见控件用法教程》、《WinForm控件用法总结》、《C#数据结构与算法教程》、《C#面向对象程序设计入门教程》及《C#程序设计之线程使用技巧总结

希望本文所述对大家C#程序设计有所帮助。

查看更多关于【C#教程】的文章

展开全文
相关推荐
反对 0
举报 0
评论 0
图文资讯
热门推荐
优选好物
更多热点专题
更多推荐文章
在Winform中播放视频等【DotNet,C#】
在项目中遇到过这样的问题,就是如何在Winform中播放视频。当时考察了几种方式,第一种是直接使用Windows Media Player组件,这种最简单;第二种是利用DirectX直接在窗体或者控件上绘图,这种比较复杂。于是采用的是第一种方法。      先从VS的工具箱里

0评论2023-02-09317

c# WinForm开发 DataGridView控件的各种操作总结(单元格操作,属性设置)
一、单元格内容的操作 *****// 取得当前单元格内容         Console.WriteLine(DataGridView1.CurrentCell.Value); // 取得当前单元格的列 Index       Console.WriteLine(DataGridView1.CurrentCell.ColumnIndex); // 取得当前单元格的行 Index

0评论2023-02-09716

C#:winform项目在win7,xp32位和64位都能执行
vs中项目配置管理器活动解决方式平台选择X86平台。

0评论2023-02-09929

C# winform Panel 添加 滚动条 cba赛程
Detailed discussion here. Try this instead for 'only' scrolling vertical.(auto scroll needs to be false before it will accept changes)mypanel.AutoScroll = false;mypanel.HorizontalScroll.Enabled = false;mypanel.HorizontalScroll.Visible = f

0评论2023-02-08385

C#实现winform中RichTextBox在指定光标位置插入图片的方法
这篇文章主要介绍了C#实现winform中RichTextBox在指定光标位置插入图片的方法,涉及RichTextBox控件及剪切板的相关操作技巧,非常简单实用,需要的朋友可以参考下

0评论2016-06-20102

C# WinForm控件对透明图片重叠时出现图片不透明的简单解决方法
这篇文章主要介绍了C# WinForm控件对透明图片重叠时出现图片不透明的简单解决方法,结合实例形式分析了WinForm图片重叠后造成图片不透明的原因与相应的解决方法,需要的朋友可以参考下

0评论2016-06-20123

在WinForm中发送HTTP请求的实现方法
下面小编就为大家带来一篇在WinForm中发送HTTP请求的实现方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

0评论2016-06-20121

学习Winform分组类控件(Panel、groupBox、TabControl)
这篇文章主要和大家一起学习Winform分组类控件,包括容器控件(Panel),分组框控件(groupBox)和选项卡控件(TabControl)等控件,感兴趣的小伙伴们可以参考一下

0评论2016-06-01128

学习Winform文本类控件(Label、Button、TextBox)
这篇文章主要和大家一起学习Winform文本类控件,包含标签控件(Label),按钮控件(Button),文本框控件(TextBox)和格式文本控件(RichTextBox),感兴趣的小伙伴们可以参考一下

0评论2016-06-01122

winform 中显示异步下载的图片
本文主要介绍利用WebClient异步下载图片,显示在GridView上,需要的朋友可以参考下。

0评论2016-06-01131

Winform在DataGridView中显示图片
本文主要介绍在DataGridView如何显示图片,简单实用,需要的朋友可以参考下。

0评论2016-06-01137

更多推荐