Package cn.dreampie.captcha.word

Examples of cn.dreampie.captcha.word.RandomWordFactory


    fontFactory.setMaxSize(font_max_size);
    fontFactory.setMinSize(font_min_size);
    configurableCaptchaService.setFontFactory(fontFactory);

    // 随机字符生成器,去除掉容易混淆的字母和数字,如o和0等
    wordFactory = new RandomWordFactory();
    wordFactory.setCharacters(code);
    wordFactory.setMaxLength(font_max_num);
    wordFactory.setMinLength(font_min_num);
    configurableCaptchaService.setWordFactory(wordFactory);
View Full Code Here

TOP

Related Classes of cn.dreampie.captcha.word.RandomWordFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.