JAVA - 인증 코드 생 성 간단하게 실현
2465 단어 Java
package demo;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Random;
import javax.imageio.ImageIO;
/**
*
*
* @author Weirdo-world
*
*/
public class Demo1 {
public static void main(String[] args) {
for (int i = 0; i < 10; i++) {
verificationCode(6);
}
}
//
public static void verificationCode(int n) {
String str = "abcdefghigklmnopqrstuvwxyzABCDEFGHIGKLMNOPQRSTUVWXYZ0123456789";
char[] ch = new char[n];
int w = n * 20 + 10;
int h = 40;
Random r = new Random();
BufferedImage img = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);//
Graphics2D g = (Graphics2D) img.getGraphics();
g.setColor(Color.WHITE);//
g.fillRect(0, 0, w, h); //
int x = 10;
g.setFont(new Font(" ", Font.BOLD, 15));//
for (int i = 0; i < n; i++) {
g.setColor(new Color(r.nextInt(255), r.nextInt(255), r.nextInt(255)));//
ch[i] = str.charAt(r.nextInt(str.length()));
int y = r.nextInt(20) + 15;
g.drawString(String.valueOf(ch[i]), x, y);
x += 20;
}
//
int nn = r.nextInt(n * 4) + 10;
char[] chs = new char[nn];
int xx = 10;
for (int i = 0; i < nn; i++) {
g.setColor(new Color(r.nextInt(255), r.nextInt(255), r.nextInt(255), r.nextInt(100) + 10));
chs[i] = str.charAt(r.nextInt(str.length()));
int y = r.nextInt(20) + 10;
g.drawString(String.valueOf(chs[i]), xx, y);
xx += 8;
}
//
for (int i = 0; i < nn; i++) {
g.setStroke(new BasicStroke(r.nextInt(3)));
g.setColor(new Color(r.nextInt(255), r.nextInt(255), r.nextInt(255), r.nextInt(100) + 10));
int x1 = r.nextInt(w);
int y1 = r.nextInt(h);
int x2 = r.nextInt(w);
int y2 = r.nextInt(h);
g.drawLine(x1, y1, x2, y2);//
}
try {
ImageIO.write(img, "jpg", new File("g:/image/tmp/" + new String(ch) + ".jpg"));
} catch (IOException e) {
e.printStackTrace();
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.