java 验证码点击刷新_J2EE如何生成验证码图片和点击刷新验证码

packageutil;importjava.awt.Color;importjava.awt.Font;importjava.awt.Graphics;importjava.awt.Image;importjava.awt.image.BufferedImage;importjava.io.ByteArrayOutputStream;importjava.io.IOException;importjava.util.Random;importjavax.imageio.ImageIO;public classVerification {private static final String ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";/*** 生成一个宽为width, 高为height, 验证码为code的图片

*@paramwidth 图片的宽

*@paramheight 图片的高

*@paramcode 验证码字符串

*@return返回图片验证码*/

public static BufferedImage getImage(int width, intheight, String code){return getImage(width, height, code, 20);

}/*** 生成一个宽为width, 高为height, 验证码为code的图片,图片中干扰线的条数为lineCnt

*@paramwidth 图片的宽

*@paramheight 图片的高

*@paramcode 验证码字符串

*@paramlineCnt 干扰线的条数,建议为10条左右,可根据结果适当调整

*@return返回图片验证码*/

public static BufferedImage getImage(int width, int height, String code, intlineCnt){return createImage(width, height, code, lineCnt, 0.01);

}/*** 生成一个宽为width, 高为height, 验证码为code的图片,图片中干扰线的条数为lineCnt

* 噪声比为noiseRate,即图片中噪音像素点的百分比

*@paramwidth 图片的宽

*@paramheight 图片的高

*@paramcode 验证码字符串

*@paramlineCnt 干扰线的条数,建议为10条左右,可根据结果适当调整

*@paramnoiseRate 图片中噪音像素点占总像素的百分比

*@return返回图片验证码*/

public static BufferedImage getImage(int width, int height, String code, int lineCnt, doublenoiseRate){returncreateImage(width, height, code, lineCnt, noiseRate);

}/***

* 生成一个宽为width, 高为height, 验证码为code的图片,图片中干扰线的条数为lineCnt

* 噪声比为noiseRate,即图片中噪音像素点的百分比

*@paramwidth 图片的宽

*@paramheight 图片的高

*@paramcode 验证码字符串

*@paramlineCnt 干扰线的条数,建议为10条左右,可根据结果适当调整

*@paramnoiseRate 图片中噪音像素点占总像素的百分比

*@return返回图片验证码*/

private static BufferedImage createImage(int width, int height, String code, int lineCnt, doublenoiseRate){int fontWidth = ((int)(width * 0.8)) /code.length();int fontHeight = (int)(height * 0.7);//为了在任意的width和height下都能生成良好的验证码,//字体的大小为fontWdith何fontHeight中的小者,

int fontSize =Math.min(fontWidth, fontHeight);//drawString时要用到

int paddingX = (int) (width * 0.1);int paddingY = height - (height - fontSize) / 2;//创建图像

BufferedImage buffimg = newBufferedImage(width, height, BufferedImage.TYPE_INT_RGB);//获得画笔

Graphics g =buffimg.getGraphics();//设置画笔的颜色

g.setColor(getRandColor(200, 255));//然后填充一个矩形,即设置背景色

g.fillRect(0, 0, width, height);//设置干扰线

for (int i = 0; i < lineCnt; i++) {//随机获取干扰线的起点和终点

int xs = (int)(Math.random() *width);int ys = (int)(Math.random() *height);int xe = (int)(Math.random() *width);int ye = (int)(Math.random() *height);

g.setColor(getRandColor(1, 255));

g.drawLine(xs, ys, xe, ye);

}//添加噪点

int area = (int) (noiseRate * width *height);for(int i=0; i

buffimg.setRGB(x, y, (int)(Math.random() * 255));

}//设置字体

Font font = new Font("Ravie", Font.PLAIN, fontSize);

g.setFont(font);for(int i=0; i

String ch= code.substring(i, i+1);

g.setColor(getRandColor(1, 199));

g.drawString(ch, paddingX+ fontWidth *i, paddingY);

}returnbuffimg;

}/*** 获取随机的颜色,r,g,b的取值在L到R之间

*@paramL 左区间

*@paramR 右区间

*@return返回随机颜色值*/

private static Color getRandColor(int L, intR){if(L > 255)

L= 255;if(R > 255)

R= 255;if(L < 0)

L= 0;if(R < 0)

R= 0;int interval = R -L;int r = L + (int)(Math.random() *interval);int g = L + (int)(Math.random() *interval);int b = L + (int)(Math.random() *interval);return newColor(r, g, b);

}/*** 随机生成若干个由大小写字母和数字组成的字符串

*@paramlen 随机生成len个字符

*@return返回随机生成的若干个由大小写字母和数字组成的字符串*/

public static String getRandCode(intlen){

String code= "";for(int i=0; i

code= code +ALPHABET.charAt(index);

}returncode;

}/*** 将图片转为byte数组

*@paramimage 图片

*@return返回byte数组

*@throwsIOException*/

public static byte[] getByteArray(BufferedImage image) throwsIOException{

ByteArrayOutputStream baos= newByteArrayOutputStream();

ImageIO.write(image,"png", baos);returnbaos.toByteArray();//ByteArrayOutputStream 不需要close

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值