验证码

验证码类

package com.example.util;

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


public class CpachaUtil {
	
	
	final private char[] code = {
		'2', '3', '4', '5', '6', '7', '8', '9',
		'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
		'k', 'm', 'n', 'p', 'q', 'r', 's', 't', 'u', 'v', 
		'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F',
		'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R',
		'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'
	};
	
	final private String[] fontNames = new String[]{
			"????", "????", "Courier", "Arial", 
			"Verdana", "Times", "Tahoma", "Georgia"};
	
	final private int[] fontStyles = new int[]{
			Font.BOLD, Font.ITALIC|Font.BOLD
	};
	
	
	private int vcodeLen = 4;
	
	private int fontsize = 21;
	
	private int width = (fontsize+1)*vcodeLen+10;
	
	private int height = fontsize+12;
	
	private int disturbline = 3;
	
	
	public CpachaUtil(){}
	
	
	public CpachaUtil(int vcodeLen) {
		this.vcodeLen = vcodeLen;
		this.width = (fontsize+1)*vcodeLen+10;
	}
	
	
	public CpachaUtil(int vcodeLen,int width,int height) {
		this.vcodeLen = vcodeLen;
		this.width = width;
		this.height = height;
	}
	
	
	public BufferedImage generatorVCodeImage(String vcode, boolean drawline){
	
		BufferedImage vcodeImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
		Graphics g = vcodeImage.getGraphics();
		
		g.setColor(new Color(246, 240, 250));
		g.fillRect(0, 0, width, height);
		if(drawline){
			drawDisturbLine(g);
		}
	
		Random ran = new Random();
		
		for(int i = 0;i < vcode.length();i++){
			
			g.setFont(new Font(fontNames[ran.nextInt(fontNames.length)], fontStyles[ran.nextInt(fontStyles.length)], fontsize));
			
			g.setColor(getRandomColor());
			
			g.drawString(vcode.charAt(i)+"", i*fontsize+10, fontsize+5);
		}
		
		g.dispose();
		
		return vcodeImage;
	}
	
	public BufferedImage generatorRotateVCodeImage(String vcode, boolean drawline){
		
		BufferedImage rotateVcodeImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
		Graphics2D g2d = rotateVcodeImage.createGraphics();
		
		g2d.setColor(new Color(246, 240, 250));
		g2d.fillRect(0, 0, width, height);
		if(drawline){
			drawDisturbLine(g2d);
		}
		
		for(int i = 0;i < vcode.length();i++){
			BufferedImage rotateImage = getRotateImage(vcode.charAt(i));
			g2d.drawImage(rotateImage, null, (int) (this.height * 0.7) * i, 0);
		}
		g2d.dispose();
		return rotateVcodeImage;
	}
	
	public String generatorVCode(){
		int len = code.length;
		Random ran = new Random();
		StringBuffer sb = new StringBuffer();
		for(int i = 0;i < vcodeLen;i++){
			int index = ran.nextInt(len);
			sb.append(code[index]);
		}
		return sb.toString();
	}
	
	private void drawDisturbLine(Graphics g){
		Random ran = new Random();
		for(int i = 0;i < disturbline;i++){
			int x1 = ran.nextInt(width);
			int y1 = ran.nextInt(height);
			int x2 = ran.nextInt(width);
			int y2 = ran.nextInt(height);
			g.setColor(getRandomColor());
			g.drawLine(x1, y1, x2, y2);
		}
	}
	
	private BufferedImage getRotateImage(char c){
		BufferedImage rotateImage = new BufferedImage(height, height, BufferedImage.TYPE_INT_ARGB);
		Graphics2D g2d = rotateImage.createGraphics();
		
		g2d.setColor(new Color(255, 255, 255, 0));
		g2d.fillRect(0, 0, height, height);
		Random ran = new Random();
		g2d.setFont(new Font(fontNames[ran.nextInt(fontNames.length)], fontStyles[ran.nextInt(fontStyles.length)], fontsize));
		g2d.setColor(getRandomColor());
		double theta = getTheta();
		
		g2d.rotate(theta, height/2, height/2);
		g2d.drawString(Character.toString(c), (height-fontsize)/2, fontsize+5);
		g2d.dispose();
		
		return rotateImage;
	}

	private Color getRandomColor(){
		Random ran = new Random();
		return new Color(ran.nextInt(220), ran.nextInt(220), ran.nextInt(220)); 
	}
	
	private double getTheta(){
		return ((int) (Math.random()*1000) % 2 == 0 ? -1 : 1)*Math.random();
	}

	
	public int getVcodeLen() {
		return vcodeLen;
	}
	
	public void setVcodeLen(int vcodeLen) {
		this.width = (fontsize+3)*vcodeLen+10;
		this.vcodeLen = vcodeLen;
	}
	
	public int getFontsize() {
		return fontsize;
	}
	
	public void setFontsize(int fontsize) {
		this.width = (fontsize+3)*vcodeLen+10;
		this.height = fontsize+15;
		this.fontsize = fontsize;
	}
	
	public int getWidth() {
		return width;
	}
	
	public void setWidth(int width) {
		this.width = width;
	}
	
	public int getHeight() {
		return height;
	}
	
	public void setHeight(int height) {
		this.height = height;
	}
	
	public int getDisturbline() {
		return disturbline;
	}
	
	public void setDisturbline(int disturbline) {
		this.disturbline = disturbline;
	}
	
}

生成验证码并响应给前台

@RequestMapping(value = "/get_cpacha",method=RequestMethod.GET)
	public void getCpacha(HttpServletRequest request,
						  //设置验证码图片的默认值,required = false:也可以不传值
						  @RequestParam(value = "v1",defaultValue = "4",required = false) Integer v1,
						  @RequestParam(value = "w",defaultValue = "98",required = false)Integer w,
						  @RequestParam(value = "h",defaultValue = "37",required = false)Integer h,
						  HttpServletResponse response,
						  Model model
	){
		//创建验证码对象
		CpachaUtil cpachaUtil = new CpachaUtil(v1,w,h);
		//获取验证码
		String generatorVCode = cpachaUtil.generatorVCode();
		//将验证码放入request域中
		model.addAttribute("loginCpacha",generatorVCode);
		//将验证码放入session域中
		//@SessionAttributes(value = {"loginCpacha"})
		//生成图片
		BufferedImage generatorRotateVCodeImage = cpachaUtil.generatorRotateVCodeImage(/*传入验证码*/generatorVCode,/*设置带旋转*/true);
		try {
			//将生成的验证码图片的输出流返回到前端页面
			ImageIO.write(generatorRotateVCodeImage,"gif",response.getOutputStream());
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值