Verification code page verification

js code

var code;//在全局 定义验证码  

function createCode(){    
    code = "";    
    var codeLength = 4;//验证码的长度    
    //所有候选组成验证码的字符,可以用中文    
    var selectChar = new Array(2,3,4,5,6,7,8,'A','B','C',  
            'D','E','F','G','H','I','J','K','L','M','N','P',  
            'Q','R','S','T','U','V','W','X','Y','a','b','c',  
            'd','e','f','h','i','j','k','m','n','p',  
            'q','r','s','t','u','v','w','x','y');    
    for(var i=0;i<codeLength;i++){    
        var charIndex = Math.floor(Math.random()*60);    
        code +=selectChar[charIndex];    
    }    
    return code;    
}

function show(){    
    //显示验证码    
    $("#imgVcode").prop("src","项目名字/生成图片的action?code="+createCode());
}

java code

package com.gyj.util;

import java.awt.Color;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.awt.image.BufferedImageOp;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;

import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.ServletActionContext;
import org.patchca.background.BackgroundFactory;
import org.patchca.color.ColorFactory;
import org.patchca.color.RandomColorFactory;
import org.patchca.filter.ConfigurableFilterFactory;
import org.patchca.filter.library.AbstractImageOp;
import org.patchca.filter.library.WobbleImageOp;
import org.patchca.font.RandomFontFactory;
import org.patchca.service.Captcha;
import org.patchca.service.ConfigurableCaptchaService;
import org.patchca.text.renderer.BestFitTextRenderer;
import org.patchca.text.renderer.TextRenderer;
import org.patchca.word.RandomWordFactory;

import com.opensymphony.xwork2.Action;

public class CodeJs implements Action {

	private ConfigurableCaptchaService configurableCaptchaService = null;
	private ColorFactory colorFactory = null;
	private RandomFontFactory fontFactory = null;
	private SetCode wordFactory = null;
	private TextRenderer textRenderer = null;
	
	
	public void init(){
		
		configurableCaptchaService = new ConfigurableCaptchaService();

		// 颜色创建工厂,使用一定范围内的随机色
		colorFactory = new RandomColorFactory();
		configurableCaptchaService.setColorFactory(colorFactory);

		// 随机字体生成器
		fontFactory = new RandomFontFactory();
		fontFactory.setMaxSize(32);
		fontFactory.setMinSize(28);
		configurableCaptchaService.setFontFactory(fontFactory);

		HttpServletRequest request = ServletActionContext.getRequest();
		// 随机字符生成器,去除掉容易混淆的字母和数字,如o和0等
		String code = request.getParameter("code");
		wordFactory = new SetCode();
		wordFactory.setCharacters(code);
		configurableCaptchaService.setWordFactory(wordFactory);

		// 自定义验证码图片背景
		MyCustomBackgroundFactory backgroundFactory = new MyCustomBackgroundFactory();
		configurableCaptchaService.setBackgroundFactory(backgroundFactory);

		// 图片滤镜设置
		ConfigurableFilterFactory filterFactory = new ConfigurableFilterFactory();

		List<BufferedImageOp> filters = new ArrayList<BufferedImageOp>();
		WobbleImageOp wobbleImageOp = new WobbleImageOp();
		wobbleImageOp.setEdgeMode(AbstractImageOp.EDGE_MIRROR);
		wobbleImageOp.setxAmplitude(2.0);
		wobbleImageOp.setyAmplitude(1.0);
		filters.add(wobbleImageOp);
		filterFactory.setFilters(filters);

		configurableCaptchaService.setFilterFactory(filterFactory);

		// 文字渲染器设置
		textRenderer = new BestFitTextRenderer();
		textRenderer.setBottomMargin(3);
		textRenderer.setTopMargin(3);
		configurableCaptchaService.setTextRenderer(textRenderer);

		// 验证码图片的大小
		configurableCaptchaService.setWidth(82);
		configurableCaptchaService.setHeight(32);
	
	}
	
	public CodeJs() {
		super();
	}
	
	/**
	 * 销毁方法,负责销毁所使用资源. <br>
	 */
	public void destroy() {
		wordFactory = null;
		colorFactory = null;
		fontFactory = null;
		textRenderer = null;
		configurableCaptchaService = null;
	}
	
	@Override
	public String execute() throws Exception {
		init();
		HttpServletResponse response = ServletActionContext.getResponse();
		
		// TODO Auto-generated method stub
		response.setContentType("image/png");
		response.setHeader("cache", "no-cache");

		OutputStream outputStream = response.getOutputStream();

		// 得到验证码对象,有验证码图片和验证码字符串
		Captcha captcha = configurableCaptchaService.getCaptcha();
		
		// 取得验证码图片并输出
		BufferedImage bufferedImage = captcha.getImage();
		ImageIO.write(bufferedImage, "png", outputStream);

		outputStream.flush();
		outputStream.close();
		destroy();
		return null;
	}

	/**
	 * 自定义验证码图片背景,主要画一些噪点和干扰线
	 */
	private class MyCustomBackgroundFactory implements BackgroundFactory {
		private Random random = new Random();

		public void fillBackground(BufferedImage image) {
			Graphics graphics = image.getGraphics();

			// 验证码图片的宽高
			int imgWidth = image.getWidth();
			int imgHeight = image.getHeight();

			// 填充为白色背景
			graphics.setColor(Color.WHITE);
			graphics.fillRect(0, 0, imgWidth, imgHeight);

			// 画100个噪点(颜色及位置随机)
			for (int i = 0; i < 100; i++) {
				// 随机颜色
				int rInt = random.nextInt(255);
				int gInt = random.nextInt(255);
				int bInt = random.nextInt(255);

				graphics.setColor(new Color(rInt, gInt, bInt));

				// 随机位置
				int xInt = random.nextInt(imgWidth - 3);
				int yInt = random.nextInt(imgHeight - 2);

				// 随机旋转角度
				int sAngleInt = random.nextInt(360);
				int eAngleInt = random.nextInt(360);

				// 随机大小
				int wInt = random.nextInt(6);
				int hInt = random.nextInt(6);

				graphics.fillArc(xInt, yInt, wInt, hInt, sAngleInt, eAngleInt);

				// 画5条干扰线
				if (i % 20 == 0) {
					int xInt2 = random.nextInt(imgWidth);
					int yInt2 = random.nextInt(imgHeight);
					graphics.drawLine(xInt, yInt, xInt2, yInt2);
				}
			}
		}
	}
	
	
	private class SetCode extends RandomWordFactory{

		@Override
		public String getNextWord() {
			// TODO Auto-generated method stub
			return super.characters;
		}

		@Override
		public void setCharacters(String characters) {
			// TODO Auto-generated method stub
			super.setCharacters(characters);
		}

		@Override
		public void setMaxLength(int maxLength) {
			super.setMaxLength(1);
		}

		@Override
		public void setMinLength(int minLength) {
			super.setMinLength(0);
		}
		
	}
}

 The dependency of the mevan project

<dependency>
    <groupId>net.pusuo</groupId>
    <artifactId>patchca</artifactId>
    <version>0.5.0</version>
</dependency>

 

 

Published 16 original articles · won praise 1 · views 3823

Guess you like

Origin blog.csdn.net/GYJ_love/article/details/103882095