Package com.iisigroup.cap.security.captcha.producer

Examples of com.iisigroup.cap.security.captcha.producer.CapTextProducer


  }

  private BufferedImage crateImage(String str) {
    Builder captcha = new Captcha.Builder(width, height);
    if (this.wordRenderer == null) {
      captcha.addText(new CapTextProducer(str));
    } else {
      captcha.addText(new CapTextProducer(str), this.wordRenderer);
    }

    if (producers != null && !producers.isEmpty()) {
      for (Object producer : producers) {
        if (producer instanceof BackgroundProducer) {
View Full Code Here

TOP

Related Classes of com.iisigroup.cap.security.captcha.producer.CapTextProducer

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.