Examples of BestFitTextRenderer


Examples of cn.dreampie.captcha.text.renderer.BestFitTextRenderer

  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;
    this.height = height;
  }
View Full Code Here

Examples of cn.dreampie.captcha.text.renderer.BestFitTextRenderer

  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;
    this.height = height;
  }
View Full Code Here

Examples of cn.dreampie.captcha.text.renderer.BestFitTextRenderer

//        configurableCaptchaService.setFilterFactory(filterFactory);
        break;
    }

    // 文字渲染器设置
    textRenderer = new BestFitTextRenderer();
    textRenderer.setBottomMargin(bottom_margin);
    textRenderer.setTopMargin(top_margin);
    configurableCaptchaService.setTextRenderer(textRenderer);

    // 验证码图片的大小
View Full Code Here

Examples of cn.dreampie.captcha.text.renderer.BestFitTextRenderer

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

Examples of cn.dreampie.common.plugin.patchca.text.renderer.BestFitTextRenderer

  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;
    this.height = height;
  }
View Full Code Here

Examples of cn.dreampie.common.plugin.patchca.text.renderer.BestFitTextRenderer

  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;
    this.height = height;
  }
View Full Code Here

Examples of cn.dreampie.common.plugin.patchca.text.renderer.BestFitTextRenderer

    filterFactory.setFilters(filters);

    configurableCaptchaService.setFilterFactory(filterFactory);

    // 文字渲染器设置
    textRenderer = new BestFitTextRenderer();
    textRenderer.setBottomMargin(BOTTOM_MARGIN);
    textRenderer.setTopMargin(TOP_MARGIN);
    configurableCaptchaService.setTextRenderer(textRenderer);

    // 验证码图片的大小
View Full Code Here

Examples of cn.dreampie.common.plugin.patchca.text.renderer.BestFitTextRenderer

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

Examples of cn.dreampie.common.plugin.patchca.text.renderer.BestFitTextRenderer

    filterFactory.setFilters(filters);

    configurableCaptchaService.setFilterFactory(filterFactory);

    // 文字渲染器设置
    textRenderer = new BestFitTextRenderer();
    textRenderer.setBottomMargin(BOTTOM_MARGIN);
    textRenderer.setTopMargin(TOP_MARGIN);
    configurableCaptchaService.setTextRenderer(textRenderer);

    // 验证码图片的大小
View Full Code Here

Examples of cn.dreampie.common.plugin.patchca.text.renderer.BestFitTextRenderer

    filterFactory.setFilters(filters);

    configurableCaptchaService.setFilterFactory(filterFactory);

    // 文字渲染器设置
    textRenderer = new BestFitTextRenderer();
    textRenderer.setBottomMargin(BOTTOM_MARGIN);
    textRenderer.setTopMargin(TOP_MARGIN);
    configurableCaptchaService.setTextRenderer(textRenderer);

    // 验证码图片的大小
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.