1 using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Web; namespace CasCall
{
public class service_code : System.Web.UI.Page
{
#region
public string RandCode()
{
int CodeCount = ;//生成4个随机数
string randomChar = "2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,U,V,W,X,Y,Z";
randomChar = randomChar.Replace(",", "");
string RandomCode = "";
System.Threading.Thread.Sleep();
char[] allCharArray = randomChar.ToCharArray();
int n = allCharArray.Length;
System.Random random = new Random(~unchecked((int)DateTime.Now.Ticks));
for (int i = ; i < CodeCount; i++)
{
int rnd = random.Next(, n);
RandomCode += allCharArray[rnd];
}
return RandomCode;
}
#endregion
#region 验证码
/// <summary>
/// 创建验证码图片
/// </summary>
/// <param name="randomcode">验证码</param>
public byte[] CreateImage(string randomcode)
{
int randAngle = ; //随机转动角度
int mapwidth = (int)(randomcode.Length * );
Bitmap map = new Bitmap(mapwidth, );//创建图片背景
Graphics graph = Graphics.FromImage(map);
graph.Clear(Color.White);//清除画面,填充背景
//graph.DrawRectangle(new Pen(Color.Silver, 0), 0, 0, map.Width - 1, map.Height - 1);//画一个边框 Random rand = new Random(); //验证码旋转,防止机器识别
char[] chars = randomcode.ToCharArray();//拆散字符串成单字符数组
//文字距中
StringFormat format = new StringFormat(StringFormatFlags.NoClip);
format.Alignment = StringAlignment.Center;
format.LineAlignment = StringAlignment.Center;
//定义颜色
Color[] c = { Color.Black, Color.Red, Color.Blue, Color.Green,
Color.Orange, Color.Brown, Color.DarkBlue }; //画图片的背景噪音线
for (int i = ; i < ; i++)
{
int x1 = rand.Next();
int x2 = rand.Next(map.Width - , map.Width);
int y1 = rand.Next(map.Height);
int y2 = rand.Next(map.Height); graph.DrawLine(new Pen(c[rand.Next()]), x1, y1, x2, y2);
} for (int i = ; i < chars.Length; i++)
{
int cindex = rand.Next();
int findex = rand.Next();
Font f = new System.Drawing.Font("Arial", , System.Drawing.FontStyle.Regular);//字体样式(参数2为字体大小)
Brush b = new System.Drawing.SolidBrush(c[cindex]);
Point dot = new Point(, );
float angle = rand.Next(-randAngle, randAngle);//转动的度数
graph.TranslateTransform(dot.X, dot.Y);//移动光标到指定位置
graph.RotateTransform(angle);
graph.DrawString(chars[i].ToString(), f, b, , , format);
graph.RotateTransform(-angle);//转回去
graph.TranslateTransform(, -dot.Y);//移动光标到指定位置
}
//生成图片
System.IO.MemoryStream ms = new System.IO.MemoryStream();
MemoryStream stream = new MemoryStream();
map.Save(stream, ImageFormat.Jpeg);
graph.Dispose();
map.Dispose();
return stream.ToArray(); }
#endregion
}
}

前台

  <label class="panel-body">验证码:</label>
<input type="text" id="yzm" name="yzm" class="form-control" />&nbsp;&nbsp;</td>
<img id="ValidCode" style="cursor: pointer;" src="/SignIn/YanZhengMa" alt="验证码" onclick="this.src='/SignIn/YanZhengMa?time=' + new Date().getTime();" />
<a href="#" id="Changes" data-toggle="modal" data-target="#mymodel">看不清,换一张</a>
JS
$("#Changes").click(function () {
document.getElementById("ValidCode").src = '/SignIn/YanZhengMa?time=' + new Date().getTime();
});

  后台调用

  /// <summary>
/// 生成验证码
/// </summary>
/// <returns></returns>
public ActionResult YanZhengMa()
{
service_code sc = new service_code();
string vVerificationCode = sc.RandCode();
Session["vcode"] = vVerificationCode.ToLower();
// Safe.SessionAdd("vcode", vVerificationCode.ToLower(), 2); //Session中保存验证码
sc.CreateImage(vVerificationCode);
return File(sc.CreateImage(vVerificationCode), @"image/jpeg");
}

 效果图

C# 比较不错的通用验证码的更多相关文章

  1. 一个不错的php验证码的类

    类的代码: <?php class Captcha { private $width; private $height; private $codeNum; private $code; pri ...

  2. PHP之验证码识别

    首先推荐几篇有关验证码识别的文章,觉得不错 php实现验证码的识别(初级篇) 关于bp神经网格识别验证码 一.思路 碰见一个验证码,如果我们想要识别它,我们需要的是做什么呢? 我们先观察几个验证码.. ...

  3. python 豆瓣验证码识别总结

    总结:  pytesseract 识别比较标准的图片  识别成功率   还是不错的. 验证码的图片识别 需要先处理好   再用pytesseract 识别 from PIL import Image  ...

  4. 关于网易云验证码V1.0版本的服务介绍

    服务介绍 易盾验证码是一个用于区分人和机器的通用验证码组件.传统的字符型验证码由于存在破解率高,用户体验不友好等问题,已不适用于现今的互联网环境.易盾验证码抛弃了传统字符型验证码展示-填写字符-比对答 ...

  5. [Hei.Captcha] Asp.Net Core 跨平台验证码实现

    写在前面 说起来比较丢脸.我们有个手机的验证码发送逻辑需要使用验证码,这块本来项目里面就有验证码绘制逻辑,.Net Framework的,使用的包是System.Drawing,我把这验证码绘制逻辑复 ...

  6. 用python读写excel(xlrd、xlwt)

    最近需要从多个excel表里面用各种方式整理一些数据,虽然说原来用过java做这类事情,但是由于最近在学python,所以当然就决定用python尝试一下了.发现python果然简洁很多.这里简单记录 ...

  7. 在Visual Studio 2012中使用VMSDK开发领域特定语言(一)

    前言 本专题主要介绍在Visual Studio 2012中使用Visualization & Modeling SDK进行领域特定语言(DSL)的开发,包括两个部分的内容.在第一部分中,将对 ...

  8. 在Visual Studio 2012中使用VMSDK开发领域特定语言1

    在Visual Studio 2012中使用VMSDK开发领域特定语言(一)   前言 本专题主要介绍在Visual Studio 2012中使用Visualization & Modelin ...

  9. 加锁并发算法 vs 无锁并发算法

    Heinz Kabutz 在上周举办了一次成功 JCrete研讨会,我在会上参加了对一种新的 StampedLock(于JSR166中 引入) 进行的评审.StampedLock (邮戳锁) 旨在解决 ...

随机推荐

  1. [Immutable.js] Updating nested values with ImmutableJS

    The key to being productive with Immutable JS is understanding how to update values that are nested. ...

  2. boost::asio的http client应用笔记

    1 踩过的坑 1.1 io_service boost::asio::io_service::run()会一直运行到没有任务为止,假设中途调用stop().则全部等待中的任务会立马运行.要在停止的时候 ...

  3. BAPC2014 C&amp;&amp;HUNNU11583:Citadel Construction(几何)

    题意: 给出一系列的点,要求寻找最多4个点.使得组成一个面积最大的多边形 思路: 非常显然仅仅有两种情况.要么是三角形,要么是四边形 首先不难想到的是.先要把最外面的点都找出来,事实上就是找凸包 可是 ...

  4. JAVA Concurrent包 中的并发集合类

    我们平时写程序需要经常用到集合类,比如ArrayList.HashMap等,但是这些集合不能够实现并发运行机制,这样在服务器上运行时就会非常的消耗资源和浪费时间,并且对这些集合进行迭代的过程中不能进行 ...

  5. 使用DatagramSocket与DatagramPacket传输数据 分类: B1_JAVA 2013-10-12 13:00 1936人阅读 评论(0) 收藏

    参考传智播客毕向东JAVA视频. 注: DatagramSocket发送的每个包都需要指定地址,而Socket则是在首次创建时指定地址,以后所有数据的发送都通过此socket. A socket is ...

  6. 【b802】火柴棒等式

    Time Limit: 1 second Memory Limit: 50 MB [问题描述] 给你n根火柴棍,你可以拼出多少个形如"A+B=C"的等式?等式中的A.B.C是用火柴 ...

  7. ArcSDE 设置

    ---------------------转载----------------------- a)创建加载路径——st_shapelib.dll         执行创建库脚本:create or r ...

  8. protobuf中会严重影响时间和空间损耗的地方

    http://blog.chinaunix.net/uid-26922071-id-3723751.html 当前项目中普遍用到GOOGLE 的一个开源大作PROTOBUF,把它作为网络应用层面的传输 ...

  9. 微信小程序从零开始开发步骤(一)

    从零到有写一个小程序系列专题,很早以前就想写来分享,但由于项目一直在进展,没有过多的时间研究技术,现在可以继续分享了.1:注册用没有注册过微信公众平台的邮箱注册一个微信公众号, 申请帐号 ,点击 ht ...

  10. 树莓派——root用户和sudo

    Linux操作系统是一个多用户操作系统,它同意多个用户登录和使用一台计算机. 为了保护计算机(和其它用户的隐私).用户都被限制了能做的事情. 大多数用户都同意执行计算机上大部分程序,而且编辑和保存存放 ...