Package nl.captcha.text.renderer

Examples of nl.captcha.text.renderer.DefaultWordRenderer


 
  public CaptchaBean build() {
    // Add and render the text
    if (_txtProd != null) {
      _answer += _txtProd.getText();
      WordRenderer wr = new DefaultWordRenderer();
      wr.render(_answer, _img);
    }
   
    if (_noiseProd != null) {
      _noiseProd.makeNoise(_img);
    }
View Full Code Here


         *
         * @param txtProd
         * @return
         */
        public Builder addText(TextProducer txtProd) {
            return addText(txtProd, new DefaultWordRenderer());
        }
View Full Code Here

TOP

Related Classes of nl.captcha.text.renderer.DefaultWordRenderer

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.