生成kaptcha驗證碼工具

<dependency>
  <groupId>com.github.penggle</groupId>
    <artifactId>kaptcha</artifactId>
    <version>2.3.2</version>
</dependency>

配置類

package com.user.config;

import com.google.code.kaptcha.impl.DefaultKaptcha;
import com.google.code.kaptcha.util.Config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.Properties;

/**
 * 類描述:驗證碼配置
 */
@Configuration
public class KaptchaConfig {
    @Bean
    public DefaultKaptcha producer() {
        DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
        Properties properties = new Properties();
        // 圖片邊框
        properties.setProperty("kaptcha.border", "no");
        // 邊框顏色
        properties.setProperty("kaptcha.border.color", "105,179,90");
        // 圖片寬
        properties.setProperty("kaptcha.image.width", "110");
        // 圖片高
        properties.setProperty("kaptcha.image.height", "40");
        // 字體大小
        properties.setProperty("kaptcha.textproducer.font.size", "30");
        // 驗證碼長度
        properties.setProperty("kaptcha.textproducer.char.length", "4");
        // 字體
        properties.setProperty("kaptcha.textproducer.font.names", "宋體");
        // 干擾線設置
        properties.setProperty("kaptcha.noise.impl", "com.google.code.kaptcha.impl.NoNoise");
        // 圖片樣式 :陰影
        properties.setProperty("kaptcha.obscurificator.impl", "com.google.code.kaptcha.impl.ShadowGimpy");
        Config config = new Config(properties);
        defaultKaptcha.setConfig(config);

        return defaultKaptcha;
    }
}

使用類例

 public Result getVerificationCode() {

        log.info("生成驗證碼");
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        // 生成驗證碼Token
        String captchaToken = UUID.randomUUID().toString();
        //生成文字驗證碼
        String captchaCode = defaultKaptcha.createText();
        if ("1".equals(MDC.get("MockLogin"))) {
            captchaToken = "token001";
            captchaCode = "A1234";
        }
        log.info("VerificationCodeToken:{},value:{}", captchaToken, captchaCode);
        //生成圖片驗證碼
        BufferedImage image = defaultKaptcha.createImage(captchaCode);
        try {
            ImageIO.write(image, "jpg", baos);
        } catch (IOException e) {
            e.printStackTrace();
        }
        String base64Captcha = Base64Tool.encode(baos.toByteArray());

        //TODO 緩存驗證碼5分鐘
        //TODO 此處設置自己的驗證碼緩存時間和緩存地址,一般用redis,此處我自己練習放在自己寫的一個map集合內作爲緩存了,自己調整一下
        //catchUtil.putCatch(captchaToken, captchaCode, 5 * 60);

        VerificationVo verificationVO = new VerificationVo();
        verificationVO.setToken(captchaToken);
        verificationVO.setValue(base64Captcha);
        return new Result(verificationVO);

    }
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章