生成验证码

作者:追风剑情 发布于:2015-10-21 10:22 分类:C#


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Drawing;
  5. using System.Drawing.Drawing2D;
  6. using System.Drawing.Imaging;
  7.  
  8. namespace BitmapTest
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. VerifyCode verifyCode = new VerifyCode();
  15. verifyCode.Generate();
  16. verifyCode.Save();
  17. }
  18. }
  19.  
  20. /// <summary>
  21. /// 验证码类
  22. /// </summary>
  23. public class VerifyCode
  24. {
  25. public Bitmap bitmap { private set; get; }
  26. public string code { private set; get; }
  27.  
  28. private Random random = new Random();
  29. private string fontFamily = "Verdana";
  30. private List<char> chars = new List<char>();
  31.  
  32. public VerifyCode()
  33. {
  34. //把A到Z放到列表中
  35. for (int c = 65; c <= 90; c++)
  36. chars.Add((char)c);
  37. }
  38.  
  39. //生成验证码图片
  40. public void Generate()
  41. {
  42. Bitmap tmp = new Bitmap(80, 30, PixelFormat.Format32bppArgb);
  43. Graphics g = Graphics.FromImage(tmp);
  44. g.SmoothingMode = SmoothingMode.HighQuality;
  45. g.Clear(Color.DarkGray);
  46. Font font = new Font(fontFamily, 16, FontStyle.Strikeout);
  47. SolidBrush brush = new SolidBrush(Color.White);
  48. StringFormat format = new StringFormat(StringFormatFlags.NoClip);
  49. format.Alignment = StringAlignment.Near;
  50. format.LineAlignment = StringAlignment.Center;
  51. RectangleF rect = new RectangleF(0, 0, tmp.Width, tmp.Height);
  52. code = "";
  53. //随机显示5个字母
  54. for (int i = 0; i < 5; i++)
  55. {
  56. //字母位置
  57. if (i == 0)
  58. g.TranslateTransform(3, 0);
  59. else
  60. g.TranslateTransform(13, 0);
  61. //字母随机旋转
  62. g.RotateTransform(-4 + random.Next(8));
  63. //随机字母
  64. string c = chars[random.Next(chars.Count)].ToString();
  65. g.DrawString(c, font, brush, rect, format);
  66. code += c;
  67. }
  68.  
  69. g.ResetTransform();
  70. AddBackgroundNoisePoint(tmp, g);
  71.  
  72. bitmap = tmp;
  73. }
  74.  
  75. //保存验证码图片
  76. public void Save()
  77. {
  78. if (null != bitmap)
  79. bitmap.Save("VerifyCode.png", ImageFormat.Png);
  80. }
  81.  
  82. //增加噪点
  83. private void AddBackgroundNoisePoint(Bitmap bmp, Graphics g)
  84. {
  85. Random random = new Random();
  86. using (Pen objPen = new Pen(Color.Azure, 0))
  87. {
  88. for (int i = 0; i < bmp.Width; i++)
  89. {
  90. g.DrawRectangle(objPen, random.Next(bmp.Width), random.Next(bmp.Height), 1, 1);
  91. }
  92. }
  93. }
  94. }
  95. }


效果

VerifyCode.jpg

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号