书写类绘制图片验证码

如果当你需要在注册或者是提交表单的时候使用验证码的话, 那么则可以使用该类

Captcha.java 图片绘制类,该类使用了一个工具类。用户产生 0-9 A-Z-a-z的字符数组。

package cn.tblack.bookstack.util;

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

import javax.imageio.ImageIO;

/**
 * <span>验证码绘制类</span>
 * @Date:2019年6月13日
 * @Version: 1.0(测试版)
 */
public class Captcha {

	private int width;
	private int height;
	private String code;  //表示生成的验证码
	private int len;	//验证码的长度
	
	
	

	private static Captcha captcha;	//存放着当前类的对象(用于产生单例类)
	private final static char[] DIGIT;	//存放着将要产生的数字
	private final static char[] ALPHABET; //存放着将要产生的验证码的字母
	private static Random rand = new Random(); //随机数对象
	private static final int DEFAULT_LEN = 5;  //默认的验证码生成个数
	
	private static int COLOR_BOUND = 0x9BFFFF;	//产生的随机颜色的最大值
	
	private static final  int DEFAULT_WIDTH = 60; //默认宽度
	private static final  int DEFAULT_HEIGHT = 150;  //默认高度
	private static final int LINE_NUM = 2;	//斜线的数量
	
	static {
		captcha = new Captcha();
		DIGIT =  DigitGenerator.numbers();
		ALPHABET = DigitGenerator.alphabet();
	}
	
	private Captcha() {
		init(DEFAULT_HEIGHT,DEFAULT_WIDTH);
		setLen(DEFAULT_LEN);
	}
	
	/**
	 * @ 单例设计模式, 只创建一个绘制验证码的对象
	 * @return
	 */
	public static Captcha getInstance() {
		return captcha;
	}
	
	/**
	 * @ 初始化对象, 设置产生验证码的宽度和高度。并生成随机的验证码
	 * @param width
	 * @param height
	 */
	public void init(int width, int height) {
		this.width = width;
		this.height =  height;
		setCode(randomCode());
	}
	
	/**
	 * @ 完全初始化, 设置所有的参数
	 * @param width
	 * @param height
	 * @param len
	 * @param code
	 */
	public void init(int width, int height, int len, String code) {
		this.width = width;
		this.height =  height;
		setLen(len);
		setCode(code);
	}
	
	
	
	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 String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public int getLen() {
		return len;
	}

	public void setLen(int len) {
		this.len = len;
	}

	/**
	 * @ 生成一个随机的验证码。 长度默认为len
	 * @return
	 */
	public String randomCode() {
		
		return randomCode(len);
	}
	/**
	 * @ 产生指定长度的验证码
	 * @param len
	 * @return
	 */
	public String randomCode(int len) {
		
		char[] vCode = new char[len];
		
		for(int i  = 0 ;i < len; ++i) {
			
			/*@ 偶数生成字母*/
			if(i % 2 == 0) {
				vCode[i] = ALPHABET[rand.nextInt(ALPHABET.length)];
			}
			/*@ 奇数生成数字*/
			else {
				vCode[i] = DIGIT[rand.nextInt(DIGIT.length)];
			}
		}
		
		return new String(vCode);
	}
	
	public BufferedImage drawCheckImg() {
		return drawCheckImg(code);
	}
	
	/**
	 * @ 根据提供的code对象来绘制一张验证码图片
	 * @param code
	 * @return
	 */
	public BufferedImage drawCheckImg(String code) {
		
		BufferedImage img = new BufferedImage(width, height,BufferedImage.TYPE_INT_RGB);
		
		//获取图片对象的画笔
		Graphics2D graphics = img.createGraphics();  
		
		
		/*@ 设置画笔的颜色和背景填充色*/
		graphics.setBackground(Color.white);
		graphics.fillRect(0, 0, width, height);
//		graphics.setColor(Color.black);		//画边框线- 可以去除,更加美观
//		graphics.drawRect(0, 0, width - 1, height - 1);
		Font font = new Font("Consoles",Font.BOLD + Font.ITALIC,height);
		graphics.setFont(font);
		
		
		/*@ 画验证码*/
		for(int i = 0; i < len; ++i) {
			graphics.setColor(randColor(COLOR_BOUND));
			graphics.drawString(String.valueOf(code.charAt(i)), i * (width / (len + 1)) + 5, (int)(height * 0.8));
		}
		
		
		/*@ 画点(用于模糊图片)*/
		for(int i = 0; i < width + height; ++i) {
			graphics.setColor(randColor(0xFFFFF));
			graphics.drawOval(rand.nextInt(width),rand.nextInt(height),1,1);
		}
		
		/*@ 画线(用于模糊图片)*/
		for(int i  = 0; i < LINE_NUM; ++i) {
			graphics.setColor(randColor(0xFFFFF));
			graphics.drawLine(0, rand.nextInt(height), width, rand.nextInt(height));
		}
		
		return img;
	}
	
	/**
	 * @ 从给定的范围内生成随机的颜色
	 * @param rgb
	 * @return
	 */
	private Color randColor(int rgb) {
		return new Color(rand.nextInt(rgb));
	}
	
	public static void main(String[] args) throws IOException {
		
		Captcha captcha = Captcha.getInstance();
		captcha.init(150, 50);
	
		FileOutputStream  out = new FileOutputStream("code.jpg");
		ImageIO.write(captcha.drawCheckImg(), "jpg", out);
		out.close();
		
		
	}
	
	
	
}

DigitGenerator.java 生成验证码的字符数组

	package cn.tblack.bookstack.util;

/**
 * <span>用来产生数字- 字母的工具类</span>
 * @Date:2019年6月13日
 * @Version: 1.0(测试版)
 */
public class DigitGenerator {

	private final static char[] DIGIT;	//存放着0-9的数字
	private final static char[] ALPHABET; //存放52个字母
	
	
	
	/*@ 静态代码块, 在类被加载的时候初始化*/
	static{
		DIGIT = new char[10];
		
		for(int i = 0;i < DIGIT.length;++i) {
			DIGIT[i] = (char) ('0' + i);
		}
		
		ALPHABET = new char[52];  
		
		for(int i  = 0; i < ALPHABET.length / 2; ++i) {
			ALPHABET[i] = (char) ('A' + i);
		}
		
		for(int i  = ALPHABET.length / 2; i < ALPHABET.length; ++i) {
			ALPHABET[i] = (char) ('a' + i -  ALPHABET.length / 2);
		}		
	}
	
	/**
	 * @ 返回包含0-9数字的字符数组
	 * @return
	 */
	public static char[] numbers() {
		return DIGIT;
	}
	
	/**
	 * @ 返回包含 a-z A-Z 的字母表
	 * @return
	 */
	public static char[] alphabet() {
		return ALPHABET;
	}
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

David_TD

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值