CaptchaImage.CaptchaImage.CaptchaImage C# (CSharp) Method

CaptchaImage() public method

Initializes a new instance of the CaptchaImage class using the specified text, width and height.
public CaptchaImage ( string s, int width, int height ) : System
s string
width int
height int
return System
        public CaptchaImage(string s, int width, int height)
        {
            this.text = s;
            this.SetDimensions(width, height);
            this.GenerateImage();
        }

Same methods

CaptchaImage::CaptchaImage ( string s, int width, int height, string familyName ) : System