惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园_首页
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
美团技术团队
IT之家
IT之家
罗磊的独立博客
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
月光博客
月光博客
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园 - 叶小钗
M
MIT News - Artificial intelligence
B
Blog RSS Feed
有赞技术团队
有赞技术团队
Y
Y Combinator Blog

Shiroha白羽的博客

Golang 踩坑 —— interface 为参数的时候传 nil 指针 Codeforces Round 925 (Div. 3) Codeforces Round 924 (Div. 2) Codeforces Round 923 (Div. 3) Codeforces Round 922 (Div. 2) Codeforces Round 921 (Div. 2) Educational Codeforces Round 161 (Rated for Div. 2) Codeforces Round 920 (Div. 3) Codeforces Round 919 (Div. 2) Hello 2024 Good Bye 2023 Codeforces Round 918 (Div. 4) 个人备份的常用 macOS 清理命令 Codeforces Round 917 (Div. 2) Pinely Round 3 (Div. 1 + Div. 2) Educational Codeforces Round 160 (Rated for Div. 2) Codeforces Round 915 (Div. 2) Codeforces Round 914 (Div. 2) Codeforces Round 913 (Div. 3) Educational Codeforces Round 159 (Rated for Div. 2) Codeforces Round 912 (Div. 2) Codeforces Round 911 (Div. 2) CodeTON Round 7 (Div. 1 + Div. 2, Rated, Prizes!) Educational Codeforces Round 158 (Rated for Div. 2) Codeforces Round 910 (Div. 2) Codeforces Round 909 (Div. 3) Codeforces Round 908 (Div. 2) Educational Codeforces Round 157 (Rated for Div. 2) C++自定义的字面量 Codeforces Round 907 (Div. 2)
Java 生成验证码 Captcha
Shiroha · 2022-03-19 · via Shiroha白羽的博客
// 验证码宽度
private static final Integer CAPTCHA_WIDTH = 150;
// 验证码高度
private static final Integer CAPTCHA_HEIGHT = 40;
// 验证码最大旋转角度(不推荐修改)
private static final Integer CAPTCHA_CHAR_ROTATE = 5;
// 干扰线数量
private static final Integer CAPTCHA_LINE_NUM = 5;
// 验证码数量
private static final Integer CAPTCHA_CHAR_NUM = 4;
// 验证码的保存格式
private static final String CAPTCHA_CONTENT_TYPE = "PNG";

public static String createCaptcha(OutputStream outputStream) throws PortableException {
BufferedImage image = new BufferedImage(CAPTCHA_WIDTH, CAPTCHA_HEIGHT, BufferedImage.TYPE_INT_BGR);
Graphics2D g = (Graphics2D) image.getGraphics();
g.fillRect(0, 0, CAPTCHA_WIDTH, CAPTCHA_HEIGHT);

for (int i = 0; i < CAPTCHA_LINE_NUM; i++) {
drawRandomLine(g);
}
for (int i = 0; i < CAPTCHA_LINE_NUM; i++) {
drawLeftToRightLine(g);
}
StringBuilder ans = new StringBuilder();
for (int i = 0; i < CAPTCHA_CHAR_NUM; i++) {
ans.append(drawString(g, i + 1));
}
try {
ImageIO.write(image, CAPTCHA_CONTENT_TYPE, outputStream);
} catch (IOException e) {
throw PortableException.of("B-01-002");
}
return ans.toString();
}

private static void drawRandomLine(Graphics2D g) {
int xs = RANDOM.nextInt(CAPTCHA_WIDTH);
int xe = RANDOM.nextInt(CAPTCHA_WIDTH);
int ys = RANDOM.nextInt(CAPTCHA_HEIGHT);
int ye = RANDOM.nextInt(CAPTCHA_HEIGHT);
g.setFont(ARIAL_FONT);
g.setColor(getRandomColor());
g.drawLine(xs, ys, xe, ye);
}

private static void drawLeftToRightLine(Graphics2D g) {
int xs = RANDOM.nextInt(CAPTCHA_WIDTH / 2);
int xe = CAPTCHA_WIDTH / 2 + RANDOM.nextInt(CAPTCHA_WIDTH / 2);
int ys = RANDOM.nextInt(CAPTCHA_HEIGHT / 2);
int ye = CAPTCHA_HEIGHT / 2 + RANDOM.nextInt(CAPTCHA_HEIGHT / 2);
g.setFont(ARIAL_FONT);
g.setColor(getRandomColor());
g.drawLine(xs, ys, xe, ye);
}

private static String drawString(Graphics2D g, Integer num) {
// 保证左侧和右侧不要贴边,总共留出一个字符的空间
int baseX = (int) (CAPTCHA_WIDTH * 1.0 / (ImageUtils.CAPTCHA_CHAR_NUM + 1) * num);
AffineTransform old = g.getTransform();
String c = getRandomChar();

g.setFont(ARIAL_FONT);
g.setColor(getRandomColor());
g.rotate(Math.toRadians(RANDOM.nextInt(CAPTCHA_CHAR_ROTATE * 2) - CAPTCHA_CHAR_ROTATE));
g.drawString(c, baseX, CAPTCHA_HEIGHT / 3 * 2);
g.setTransform(old);

return c;
}

private static Color getRandomColor() {
int upper = 128;
int lower = 0;
int r = lower + RANDOM.nextInt(upper);
int g = lower + RANDOM.nextInt(upper);
int b = lower + RANDOM.nextInt(upper);
return new Color(r, g, b);
}

private static String getRandomChar() {
return String.valueOf(CAPTCHA_CHAR.charAt(RANDOM.nextInt(CAPTCHA_CHAR.length())));
}