【精品】好用的验证码工具类VerifyCodeUtils

文章详细介绍了如何使用Java编写一个验证码工具类,包括生成随机验证码、以Base64编码输出图像以及创建和保存图像文件的功能。
摘要由CSDN通过智能技术生成

验证码工具类

================================================================

import javax.imageio.ImageIO;

import java.awt.Color;

import java.awt.Font;

import java.awt.Graphics;

import java.awt.Graphics2D;

import java.awt.RenderingHints;

import java.awt.geom.AffineTransform;

import java.awt.image.BufferedImage;

import java.io.ByteArrayOutputStream;

import java.io.File;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.OutputStream;

import java.util.Arrays;

import java.util.Random;

public class VerifyCodeUtil {

//使用到Algerian字体,系统里没有的话需要安装字体,字体只显示大写,去掉了1,0,i,o几个容易混淆的字符

public static final String VERIFY_CODES = “23456789ABCDEFGHJKLMNPQRSTUVWXYZ”;

private static Random random = new Random();

/**

  • 使用系统默认字符源生成验证码

  • @param verifySize 验证码长度

  • @return

*/

public static String generateVerifyCode(int verifySize) {

return generateVerifyCode(verifySize, VERIFY_CODES);

}

/**

  • 使用指定源生成验证码

  • @param verifySize 验证码长度

  • @param sources 验证码字符源

  • @return

*/

public static String generateVerifyCode(int verifySize, String sources) {

if (sources == null || sources.length() == 0) {

sources = VERIFY_CODES;

}

int codesLen = sources.length();

Random rand = new Random(System.currentTimeMillis());

StringBuilder verifyCode = new StringBuilder(verifySize);

for (int i = 0; i < verifySize; i++) {

verifyCode.append(sources.charAt(rand.nextInt(codesLen - 1)));

}

return verifyCode.toString();

}

/**

  • 生成指定数据的验证码并以Base64编码一字符串形式返回,用于前后分离

  • @param w

  • @param h

  • @param code

  • @return

  • @throws IOException

*/

public static String outputImage(int w, int h, String code) throws IOException {

ByteArrayOutputStream baos = new ByteArrayOutputStream();

VerifyCodeUtil.outputImage(100, 39, baos, code);

final String BASE64_IMAGE = “data:image/jpeg;base64,%s”;

String base64Img = String.format(BASE64_IMAGE, Base64Util.encode(baos.toByteArray()));

return base64Img;

}

/**

  • 生成指定验证码图像文件

  • @param w

  • @param h

  • @param outputFile

  • @param code

  • @throws IOException

*/

public static void outputImage(int w, int h, File outputFile, String code) throws IOException {

if (outputFile == null) {

return;

}

File dir = outputFile.getParentFile();

if (!dir.exists()) {

dir.mkdirs();

}

try {

outputFile.createNewFile();

FileOutputStream fos = new FileOutputStream(outputFile);

outputImage(w, h, fos, code);

fos.close();

} catch (IOException e) {

throw e;

}

}

/**

  • 输出指定验证码图片流

  • @param w

  • @param h

  • @param os

  • @param code

  • @throws IOException

*/

public static void outputImage(int w, int h, OutputStream os, String code) throws IOException {

int verifySize = code.length();

BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);

Random rand = new Random();

Graphics2D g2 = image.createGraphics();

g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);

Color[] colors = new Color[5];

Color[] colorSpaces = new Color[]{Color.WHITE, Color.CYAN,

Color.GRAY, Color.LIGHT_GRAY, Color.MAGENTA, Color.ORANGE,

Color.PINK, Color.YELLOW};

float[] fractions = new float[colors.length];

for (int i = 0; i < colors.length; i++) {

colors[i] = colorSpaces[rand.nextInt(colorSpaces.length)];

fractions[i] = rand.nextFloat();

}

Arrays.sort(fractions);

g2.setColor(Color.GRAY);// 设置边框色

g2.fillRect(0, 0, w, h);

Color c = getRandColor(200, 250);

g2.setColor©;// 设置背景色

g2.fillRect(0, 2, w, h - 4);

//绘制干扰线

Random random = new Random();

g2.setColor(getRandColor(160, 200));// 设置线条的颜色

for (int i = 0; i < 20; i++) {

int x = random.nextInt(w - 1);

int y = random.nextInt(h - 1);

int xl = random.nextInt(6) + 1;

int yl = random.nextInt(12) + 1;

g2.drawLine(x, y, x + xl + 40, y + yl + 20);

}

// 添加噪点

float yawpRate = 0.05f;// 噪声率

int area = (int) (yawpRate * w * h);

for (int i = 0; i < area; i++) {

int x = random.nextInt(w);

int y = random.nextInt(h);

int rgb = getRandomIntColor();

image.setRGB(x, y, rgb);

}

shear(g2, w, h, c);// 使图片扭曲

g2.setColor(getRandColor(100, 160));

int fontSize = h - 6;

Font font = new Font(“Algerian”, Font.ITALIC, fontSize);

g2.setFont(font);

char[] chars = code.toCharArray();

for (int i = 0; i < verifySize; i++) {

AffineTransform affine = new AffineTransform();

affine.setToRotation(Math.PI / 4 * rand.nextDouble() * (rand.nextBoolean() ? 1 : -1), (w / verifySize) * i + fontSize / 2, h / 2);

g2.setTransform(affine);

g2.drawChars(chars, i, 1, ((w - 10) / verifySize) * i + 5, h / 2 + fontSize / 2 - 10);

}

g2.dispose();

ImageIO.write(image, “jpg”, os);

}

private static Color getRandColor(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 static int getRandomIntColor() {

int[] rgb = getRandomRgb();

int color = 0;

for (int c : rgb) {

color = color << 8;

color = color | c;

}

return color;

}

private static int[] getRandomRgb() {

int[] rgb = new int[3];

for (int i = 0; i < 3; i++) {

rgb[i] = random.nextInt(255);

}

return rgb;

}

private static void shear(Graphics g, int w1, int h1, Color color) {

shearX(g, w1, h1, color);

shearY(g, w1, h1, color);
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数前端工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Web前端开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上前端开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

如果你觉得这些内容对你有帮助,可以扫码获取!!(备注:前端)

最后的最后

面试题千万不要死记,一定要自己理解,用自己的方式表达出来,在这里预祝各位成功拿下自己心仪的offer。
需要完整面试题的朋友可以点击蓝色字体免费获取

大厂面试题

面试题目录

来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!**

如果你觉得这些内容对你有帮助,可以扫码获取!!(备注:前端)

[外链图片转存中…(img-kjEIUkBU-1713634773301)]

最后的最后

面试题千万不要死记,一定要自己理解,用自己的方式表达出来,在这里预祝各位成功拿下自己心仪的offer。
需要完整面试题的朋友可以点击蓝色字体免费获取

[外链图片转存中…(img-qEJVp0Db-1713634773302)]

[外链图片转存中…(img-JasLE2iU-1713634773302)]

[外链图片转存中…(img-Eyz1XJnZ-1713634773302)]

[外链图片转存中…(img-3Bfavs46-1713634773303)]

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值