목적:
인증 코드 이미지 생성
1. 너비 및 높이 정의
int width = 100; int height = 50;2. BufferedImage를 사용하여 메모리에 이미지를 생성합니다. border
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);(무료 학습 영상 튜토리얼 공유:
java 영상 튜토리얼
)4. 무작위 문자 세트 및 난수 객체 생성Graphics g = image.getGraphics(); g.setColor(Color.WHITE); g.fillRect(0, 0, width, height); g.setColor(Color.BLACK); g.drawRect(0, 0, width - 1, height - 1);5. 무작위 색상 생성 방법
//字符集 String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefgjijklmnopqrstuvwxyz"; //随机数 Random ran = new Random();6.
private Color getRandomColor(Random random) { //获取随机颜色 int colorIndex = random.nextInt(3); switch (colorIndex) { case 0: return Color.BLUE; case 1: return Color.GREEN; case 2: return Color.RED; case 3: return Color.YELLOW; default: return Color.MAGENTA; } }7. 간섭선을 그립니다
//绘制验证码 for (int i = 0; i < 4; i++) { //获取随机字符 int index = ran.nextInt(str.length()); char ch = str.charAt(index); //获取随机色 Color randomColor = getRandomColor(ran); g.setColor(randomColor); //设置字体 Font font = new Font("宋体", Font.BOLD, height / 2); g.setFont(font); //写入验证码 g.drawString(ch + "", (i == 0) ? width / 4 * i + 2 : width / 4 * i, height - height / 4); }8. ImageIO를 사용하여 사진을 출력합니다
//干扰线 for (int i = 0; i < 10; i++) { int x1 = ran.nextInt(width); int x2 = ran.nextInt(width); int y1 = ran.nextInt(height); int y2 = ran.nextInt(height); Color randomColor = getRandomColor(ran); g.setColor(randomColor); g.drawLine(x1, x2, y1, y2); }새로 고침 효과를 얻습니다1. img 태그를 사용하여 이미지 표시를 만듭니다.
ImageIO.write(image, "jpg", resp.getOutputStream());3. js를 사용하여 새로 고침 효과 구현
<img id="identcode" src="identcode" alt="Java는 동적 사진 확인 코드를 구현합니다." > <a id="refesh" href="">看不清,换一张</a>최종 렌더링:
추천 관련 기사 및 튜토리얼:
Java 소개 튜토리얼위 내용은 Java는 동적 사진 확인 코드를 구현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!