コード例 #1
0
ファイル: HomeController.cs プロジェクト: cashwu/EdiCaptcha
        public FileStreamResult Image()
        {
            CaptchaResult result = CaptchaImageGenerator.GetImage(200, 100, "HELLO");

            Stream s = new MemoryStream(result.CaptchaByteData);

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