Java生成图片验证码

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;

import javax.imageio.ImageIO;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

//下面是springmvc的包,仅用于路径跳转
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("checkCode")

public class ZTestCodeController {

//定义图片的宽度
private int width = 200;

//定义图片的高度
private int height = 40;

//生成验证码的个数
private int codeCount = 4;

//x坐标
private int xx = 30;

//y坐标
private int codeY = 32;

//字体高度
private int fontHeight = 38;

//验证码图片上的字符系列
char[] codeSequence = {'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', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };

/**
*生成的验证码会用servletOutputStream输出出去
*因此使用void作为返回类型
*/
@RequestMapping("/checkCode")
public void getCheckCode(HttpServletRequest req,HttpServletResponse resp,HttpSession session) throws IOException

//定义图像BufferedImage,用于描述具有可访问图像数据缓冲区的Image
BufferedImage buffImg = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);

//getGraphics和createGraphics都返回相同的graphics2D
Graphics gd = buffImg.getGraphics();

//创建随机数生成器
Random r = new Random();

//将图像上下文的当前颜色设置为指定颜色
gd.setColor(Color.WHITE);

//因为要生成矩形验证框,这里先填充指定的矩形,该矩形四个坐标分别为x,y,x+width-1,y+height-1,得到的矩形覆盖width像素宽height像素高的区域,使用图形上下文的当前颜色填充该矩形
gd.fillRect(0, 0, width, height);

//设置字体样式
Font font = new Font("Fixedsys",Font.BOLD,fontHeight);

//将此图形上下文的字体设置问指定字体
gd.setFont(font);

//默认左上角的矩形点坐标为0,0,这里绘制指定矩形的边框
gd.setColor(Color.BLACK);
gd.drawRect(0, 0, width - 1, height - 1);

// 随机产生40条干扰线,使图象中的认证码不易被其它程序探测到。
gd.setColor(Color.BLACK);
for (int i = 0; i < 20; i++) {
	int x = random.nextInt(width);
	int y = random.nextInt(height);
	int xl = random.nextInt(12);
	int yl = random.nextInt(12);
	gd.drawLine(x, y, x + xl, y + yl);
}

// randomCode用于保存随机产生的验证码,以便用户登录后进行验证。
StringBuffer randomCode = new StringBuffer();

//设置验证码的颜色
int red = 0, green = 0, blue = 0;

// 随机产生codeCount数字的验证码,并完成拼接到一起
for (int i = 0; i < codeCount; i++) {

        // 得到随机产生的验证码数字。
	String code = String.valueOf(codeSequence[random.nextInt(36)]);
	
	// 产生随机的颜色分量来构造颜色值,这样输出的每位数字的颜色值都将不同。
	red = random.nextInt(255);
	green = random.nextInt(255);
	blue = random.nextInt(255);

	// 用随机产生的颜色将验证码绘制到图像中。
	gd.setColor(new Color(red, green, blue));
	gd.drawString(code, (i + 1) * xx, codeY);

	// 将产生的四个随机数组合在一起。
	randomCode.append(code);
}

// 将四位数字的验证码保存到Session中。
httpSession.setAttribute("code", randomCode.toString());

// 禁止图像缓存。
resp.setHeader("Pragma", "no-cache");
resp.setHeader("Cache-Control", "no-cache");
resp.setDateHeader("Expires", 0);

resp.setContentType("image/jpeg");

// 将图像输出到Servlet输出流中。
ServletOutputStream sos = resp.getOutputStream();
ImageIO.write(buffImg, "jpeg", sos);
sos.close();

}

}


路径:http://www.cnblogs.com/seed_lee/archive/2011/05/10/2042355.html





你可能感兴趣的:(java,验证码)