Exemplo n.º 1
0
 public CaptchaService(String text, int width, int height)
 {
     captcha = new Web.Captcha.Captcha(text, width, height);
 }
Exemplo n.º 2
0
 public CaptchaService(int length)
 {
     captcha = new Web.Captcha.Captcha(5);
 }
Exemplo n.º 3
0
 public CaptchaService(int width, int height, int length)
 {
     captcha = new Web.Captcha.Captcha(width, height, length);
 }