CaptchaImage.CaptchaImage.CaptchaImage C# (CSharp) Метод

CaptchaImage() публичный Метод

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
Результат 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