Ejemplo n.º 1
0
 public CaptchaImage(
     int length,
     Enums.CaptchaFormat captchaFormat,
     Color backgroundColor,
     int width,
     int height)
 {
     this.CaptchaLength   = length > 5 ? length : 5;
     this.CaptchaFormat   = captchaFormat;
     this.BackgroundColor = backgroundColor;
     this.Width           = width < 100 ? 100 : width;
     this.Height          = height < 50 ? 50 : height;
     this.GenerateImage();
 }
Ejemplo n.º 2
0
 public CaptchaImage(int length, Enums.CaptchaFormat captchaFormat)
     : this(length, captchaFormat, Color.Transparent, 150, 50)
 {
 }