Esempio n. 1
0
        public FileStreamResult Image()
        {
            CaptchaResult result = CaptchaImageGenerator.GetImage(200, 100, "HELLO");

            Stream s = new MemoryStream(result.CaptchaByteData);

            return(new FileStreamResult(s, "image/png"));
        }
Esempio n. 2
0
 public void Test()
 {
     CaptchaResult result = CaptchaImageGenerator.GetImage(200, 100, "HELLO");
 }