惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
News and Events Feed by Topic
D
Docker
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
F
Full Disclosure
H
Hackread – Cybersecurity News, Data Breaches, AI and More
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
L
LangChain Blog
H
Help Net Security
B
Blog
T
Tailwind CSS Blog
V
V2EX
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
Recent Announcements
Recent Announcements
aimingoo的专栏
aimingoo的专栏
美团技术团队
A
About on SuperTechFans
C
Cybersecurity and Infrastructure Security Agency CISA
K
Kaspersky official blog
I
InfoQ
Project Zero
Project Zero
I
Intezer
Google DeepMind News
Google DeepMind News
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Threat Research - Cisco Blogs
Last Week in AI
Last Week in AI
C
Cyber Attacks, Cyber Crime and Cyber Security
G
GRAHAM CLULEY
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
AWS News Blog
AWS News Blog
Spread Privacy
Spread Privacy
S
Securelist
Recorded Future
Recorded Future
D
Darknet – Hacking Tools, Hacker News & Cyber Security
博客园 - 叶小钗
S
Security Affairs
Blog — PlanetScale
Blog — PlanetScale
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
The Hacker News
The Hacker News

博客园 - jueban's space

js - jueban's space - 博客园 确定删除 - jueban's space - 博客园 SQL语句大全 上海 招聘 asp.net jq 的程序员 上海 招聘 asp.net jq 程序员 sql2005 asp.net2.0安全性(1)--用户角色篇(类) 常用编码工具类,支持base64,md5,des,crc32 reg 新城管如何变老城管 进度条 xss tt 可拖动,ModalPopup 新封装的仿kijiji的城市菜单 用ajax.net封装的不间断marquee行为 http://shanghai.myol.cn/ favicon.ico图标在线制作+ico下载 转贴 lightbox
验证码
jueban's space · 2008-01-21 · via 博客园 - jueban's space

<%@ WebHandler Language="C#" Class="code" %>using System;
using System.Web;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using System.Web.SessionState;public class code : IHttpHandler, IRequiresSessionState
{   
    
public void ProcessRequest (HttpContext context) {
        CreateCheckCodeImage(GenCode(
4), context);
    }
/**/
    
/// <summary>
    
/// '产生随机字符串
    
/// </summary>
    
/// <param name="num">随机出几个字符</param>
    
/// <returns>随机出的字符串</returns>
    private string GenCode(int num)
    {
        
//string str = "的一是在不了有和人这中大为上个国我以要他时来用们生到作地于出就分对成会可主发年动同工也能下过子说产种面而方后多定行学法所民得经十三之进着等部度家电力里如水化高自二理起小物现实加量都两体制机当使点从业本去把性好应开它合还因由其些然前外天政四日那社义事平形相全表间样与关各重新线内数正心反你明看原又么利比或但质气第向道命此变条只没结解问意建月公无系军很情者最立代想已通并提直题党程展五果料象员革位入常文总次品式活设及管特件长求老头基资边流路级少图山统接知较将组见计别她手角期根论运农指几九区强放决西被干做必战先回则任取据处队南给色光门即保治北造百规热领七海口东导器压志世金增争济阶油思术极交受联什认六共权收证改清己美再采转更单风切打白教速花带安场身车例真务具万每目至达走积示议声报斗完类八离华名确才科张信马节话米整空元况今集温传土许步群广石记需段研界拉林律叫且究观越织装影算低持音众书布复容儿须际商非验连断深难近矿千周委素技备半办青省列习响约支般史感劳便团往酸历市克何除消构府称太准精值号率族维划选标写存候毛亲快效斯院查江型眼王按格养易置派层片始却专状育厂京识适属圆包火住调满县局照参红细引听该铁价严";
        
//char[] chastr = str.ToCharArray();
        string[] source = { "0""1""2""3""4""5""6""7""8""9""A""B""C""D""E""F""G""H""I""J""K""L""M""N""O""P""Q""R""S""T""U""V""W""X""Y""Z""#""$""%""&""@" };
        
string code = "";
        Random rd 
= new Random();
        
int i;
        
for (i = 0; i < num; i++)
        {
            code 
+= source[rd.Next(0, source.Length)];
            
//code += str.Substring(rd.Next(0, str.Length), 1);
        }
        
return code;

    }

/**/
    
/// <summary>
    
/// 生成图片(增加背景噪音线、前景噪音点)
    
/// </summary>
    
/// <param name="checkCode">随机出字符串</param>
    private void CreateCheckCodeImage(string checkCode, HttpContext context)
    {
        
if (checkCode.Trim() == "" || checkCode == null)
            
return;
        context.Session[
"Code"= checkCode; //将字符串保存到Session中,以便需要时进行验证
        System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)(checkCode.Length * 14), 20);
        Graphics g 
= Graphics.FromImage(image);
        
try
        {
            
//生成随机生成器
            Random random = new Random();//清空图片背景色
            g.Clear(Color.White);// 画图片的背景噪音线
            int i;
            
for (i = 0; i < 25; 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.Silver), x1, y1, x2, y2);
            }

            Font font 

= new System.Drawing.Font("Arial"12, System.Drawing.FontStyle.Bold);           
            System.Drawing.Drawing2D.LinearGradientBrush brush 
= new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(00, image.Width, image.Height), Color.Blue, Color.BlueViolet, 1.2Ftrue);
            g.DrawString(checkCode, font, brush, 
22);//画图片的前景噪音点
            g.DrawRectangle(new Pen(Color.Silver), 00, image.Width - 1, image.Height - 1);
            System.IO.MemoryStream ms 
= new System.IO.MemoryStream();
            image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
            context.Response.ClearContent();
            context.Response.ContentType 
= "image/Gif";
            context.Response.BinaryWrite(ms.ToArray());

        }

catch
        {
            g.Dispose();
            image.Dispose();
        }

    }

public bool IsReusable {
        
get {
            
return false;
        }
    }

}