Java生成校验码

import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;
import java.util.Random;
import javax.imageio.ImageIO;

public class SimpleCaptcha {
	private static final String VALID_CHARS = "ABCDEFGHJKMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz0123456789"; // remove o,i,l

	private int width;// 验证码图片的宽度。
	private int height;// 验证码图片的高度。
	private int fontSize; // 字体大小
	private int chars; // 字符个数

	private BufferedImage image;
	private Random random = new Random();

	public SimpleCaptcha() {
		this(100, 30, 26, 4);
	}

	public SimpleCaptcha(int width, int height, int fontSize, int chars) {
		this.width = width;
		this.height = height;
		this.fontSize = fontSize;
		this.chars = chars;
		this.image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
	}

	public void createCode(File file) {
		try {
			FileOutputStream fos = new FileOutputStream(file);
			createCode(fos);
			fos.close();
		} catch (IOException e) {
			throw new RuntimeException(e);
		}
	}

	public void createCode(OutputStream os) {
		Graphics2D g = image.createGraphics();

		drawBackground(g);
		drawRandomLines(g, 100);
		drawFrame(g);
		drawString();

		try {
			ImageIO.write(image, "JPEG", os);
		} catch (Exception e) {
			throw new RuntimeException(e);
		}
	}

	private void drawBackground(Graphics2D g) {
		// 设定图像背景色(因为是做背景,所以偏淡)
		g.setColor(getRandomColor(180, 250));
		g.fillRect(0, 0, width, height);
	}

	/**
	 * 绘制干扰线
	 * @param g	Graphics2D对象,用来绘制图像
	 * @param nums	干扰线的条数
	 */
	private void drawRandomLines(Graphics2D g, int nums) {
		g.setColor(getRandomColor(100, 200));
		int maxlength = 12;
		for (int i = 0; i < nums; i++) {
			int x = random.nextInt(width);
			int y = random.nextInt(height);
			int xl = random.nextInt(maxlength);
			int yl = random.nextInt(maxlength);
			g.drawLine(x, y, x + xl, y + yl);
		}
	}

	private void drawFrame(Graphics2D g) {
		//画边框。
		g.setColor(Color.BLACK);
		g.drawRect(0, 0, width - 1, height - 1);
	}

	/**
	 * 生成随机颜色
	 * @param fc	前景色
	 * @param bc	背景色
	 * @return	Color对象,此Color对象是RGB形式的。
	 */
	private Color getRandomColor(int fc, int bc) {//给定范围获得随机颜色
		if (fc > 255) fc = 255;
		if (bc > 255) bc = 255;
		int r = fc + random.nextInt(bc - fc);
		int g = fc + random.nextInt(bc - fc);
		int b = fc + random.nextInt(bc - fc);
		return new Color(r, g, b);
	}

	private String getRandomString(int length) {
		char[] codes = new char[length];

		int size = VALID_CHARS.length();
		for (int i = 0; i < length; i++) {
			codes[i] = VALID_CHARS.charAt(random.nextInt(size));
		}
		return new String(codes);
	}

	private void drawString() {
		final String randomCode = getRandomString(chars);

		for (int i = 0; i < chars; i++) {
			String ch = randomCode.substring(i, i + 1);

			//缩放文字
			double scale = (random.nextInt(60) + 70D) / 100D;
			Font font = new Font("Consola", Font.BOLD, (int) (fontSize * scale));

			Graphics2D g = image.createGraphics();
			g.setFont(font);

			//旋转文字
			int w = g.getFontMetrics().charWidth(ch.charAt(0));
			int h = g.getFontMetrics().getAscent() - g.getFontMetrics().getDescent();

			int x1 = (width / chars) * i + (width / chars - w) / 2;
			int y1 = height - (height - h) / 2;

			int x2 = x1 + w / 2;
			int y2 = y1 - h / 2;

			g.rotate((random.nextInt(90) - 45) * Math.PI / 180, x2, y2);

			// 输出字符
			g.setColor(getRandomColor(1, 120));
			g.drawString(ch, x1, y1);
		}
	}

	public static void main(String[] args) {
		new SimpleCaptcha().createCode(new File("c:\\1.jpg"));
	}
}

转载于:https://my.oschina.net/sub/blog/144947

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值