Package nl.captcha.text.producer

Examples of nl.captcha.text.producer.ChineseTextProducer


            throws ServletException, IOException {
        HttpSession session = req.getSession();
        Captcha captcha;
        if (session.getAttribute(NAME) == null) {
          captcha = new Captcha.Builder(_width, _height)
                .addText(new ChineseTextProducer())
                .gimp()
                .addBorder()
                  .addNoise()
                  .addBackground(new GradiatedBackgroundProducer())
                  .build();
View Full Code Here

TOP

Related Classes of nl.captcha.text.producer.ChineseTextProducer

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.