Exemple #1
0
        public FileResult Get()
        {
            var imgPath       = Server.MapPath(SystemSettings.CaptchaBackgroundImagePath);
            var captchaLenght = SystemSettings.CaptchaLenght;

            return(File(CaptchaHelper.GetCaptchaBytes(imgPath, captchaLenght), "image/jpeg"));
        }