Examples of AdaptiveRandomWordFactory


Examples of cn.dreampie.captcha.word.AdaptiveRandomWordFactory

public class SimpleCaptchaService extends AbstractCaptchaService {

  public SimpleCaptchaService(int width, int height, Color textColor, Color backgroundColor, int fontSize, FilterFactory ff) {
    backgroundFactory = new SingleColorBackgroundFactory(backgroundColor);
    wordFactory = new AdaptiveRandomWordFactory();
    fontFactory = new RandomFontFactory();
    textRenderer = new BestFitTextRenderer();
    colorFactory = new SingleColorFactory(textColor);
    filterFactory = ff;
    this.width = width;
View Full Code Here

Examples of cn.dreampie.captcha.word.AdaptiveRandomWordFactory

    this.height = height;
  }

  public SimpleCaptchaService(int width, int height, Color textColor, Color backgroundColor, int fontSize, String[] fontNames, FilterFactory ff) {
    backgroundFactory = new SingleColorBackgroundFactory(backgroundColor);
    wordFactory = new AdaptiveRandomWordFactory();
    fontFactory = new RandomFontFactory(fontNames);
    textRenderer = new BestFitTextRenderer();
    colorFactory = new SingleColorFactory(textColor);
    filterFactory = ff;
    this.width = width;
View Full Code Here

Examples of cn.dreampie.captcha.word.AdaptiveRandomWordFactory

public class ConfigurableCaptchaService extends AbstractCaptchaService {

  public ConfigurableCaptchaService() {
    backgroundFactory = new SingleColorBackgroundFactory();
    wordFactory = new AdaptiveRandomWordFactory();
    fontFactory = new RandomFontFactory();
    textRenderer = new BestFitTextRenderer();
    colorFactory = new SingleColorFactory();
    filterFactory = new CurvesRippleFilterFactory(colorFactory);
    textRenderer.setLeftMargin(10);
View Full Code Here

Examples of cn.dreampie.common.plugin.patchca.word.AdaptiveRandomWordFactory

public class SimpleCaptchaService extends AbstractCaptchaService {

  public SimpleCaptchaService(int width, int height, Color textColor, Color backgroundColor, int fontSize, FilterFactory ff) {
    backgroundFactory = new SingleColorBackgroundFactory(backgroundColor);
    wordFactory = new AdaptiveRandomWordFactory();
    fontFactory = new RandomFontFactory();
    textRenderer = new BestFitTextRenderer();
    colorFactory = new SingleColorFactory(textColor);
    filterFactory = ff;
    this.width = width;
View Full Code Here

Examples of cn.dreampie.common.plugin.patchca.word.AdaptiveRandomWordFactory

    this.height = height;
  }

  public SimpleCaptchaService(int width, int height, Color textColor, Color backgroundColor, int fontSize, String[] fontNames, FilterFactory ff) {
    backgroundFactory = new SingleColorBackgroundFactory(backgroundColor);
    wordFactory = new AdaptiveRandomWordFactory();
    fontFactory = new RandomFontFactory(fontNames);
    textRenderer = new BestFitTextRenderer();
    colorFactory = new SingleColorFactory(textColor);
    filterFactory = ff;
    this.width = width;
View Full Code Here

Examples of cn.dreampie.common.plugin.patchca.word.AdaptiveRandomWordFactory

public class ConfigurableCaptchaService extends AbstractCaptchaService {

  public ConfigurableCaptchaService() {
    backgroundFactory = new SingleColorBackgroundFactory();
    wordFactory = new AdaptiveRandomWordFactory();
    fontFactory = new RandomFontFactory();
    textRenderer = new BestFitTextRenderer();
    colorFactory = new SingleColorFactory();
    filterFactory = new CurvesRippleFilterFactory(colorFactory);
    textRenderer.setLeftMargin(10);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.