├── .dockerignore ├── .gitignore ├── ConfigTool ├── .keep └── Release.zip ├── Images ├── .keep ├── ARITHMETIC_G.gif ├── ARITHMETIC_N.gif ├── ARITHMETIC_ZH_G.gif ├── ARITHMETIC_ZH_N.gif ├── CHINESE_G.gif ├── CHINESE_N.gif ├── Config.png ├── DEFAULT_G.gif ├── DEFAULT_N.gif ├── Font_Actionj.gif ├── Font_Epilog.gif ├── Font_Fresnel.gif ├── Font_Headache.gif ├── Font_Kaiti.gif ├── Font_Lexo.gif ├── Font_Prefix.gif ├── Font_Progbot.gif ├── Font_Ransom.gif ├── Font_Robot.gif ├── Font_Scandal.gif ├── NUMBER_G.gif ├── NUMBER_N.gif ├── NUMBER_ZH_CN.gif ├── NUMBER_ZH_CN_G.gif ├── NUMBER_ZH_HK_G.gif ├── NUMBER_ZH_HK_N.gif ├── WORD_G.gif ├── WORD_LOWER_G.gif ├── WORD_LOWER_N.gif ├── WORD_N.gif ├── WORD_NUMBER_LOWER_G.gif ├── WORD_NUMBER_LOWER_N.gif ├── WORD_NUMBER_UPPER_G.gif ├── WORD_NUMBER_UPPER_N.gif ├── WORD_UPPER_G.gif ├── WORD_UPPER_N.gif ├── bold.gif ├── font_demo.png └── normal.gif ├── LICENSE ├── Lazy.Captcha.Core ├── CaptchaBuilder.cs ├── CaptchaData.cs ├── CaptchaHelper.cs ├── CaptchaOptions.cs ├── CaptchaService.cs ├── CaptchaServiceBuilder.cs ├── CaptchaServiceCollectionExtensions.cs ├── CaptchaType.cs ├── DefaultCaptcha.cs ├── DefaultColors.cs ├── DefaultFontFamilys.cs ├── EvaluationEngine.cs ├── Generator │ ├── Code │ │ ├── Characters.cs │ │ ├── DefaultCaptchaCodeGenerator.cs │ │ ├── ExpressionEvaluator.cs │ │ └── ICaptchaCodeGenerator.cs │ ├── Extensions │ │ ├── ByteExtensions.cs │ │ └── CaptchaTypeExtensions.cs │ └── Image │ │ ├── DefaultCaptchaImageGenerator.cs │ │ ├── Gif │ │ ├── AnimatedGifEncoder.cs │ │ ├── LZWEncoder.cs │ │ └── NeuQuant.cs │ │ ├── ICaptchaImageGenerator.cs │ │ ├── ICaptchaImageGeneratorBuilder.cs │ │ ├── Models │ │ ├── BubbleGraphicDescription.cs │ │ ├── InterferenceLineGraphicDescription.cs │ │ └── TextGraphicDescription.cs │ │ └── Option │ │ ├── CaptchaImageGeneratorOption.cs │ │ └── DefaultCaptchaImageOptionBuilder.cs ├── ICaptcha.cs ├── ICaptchaBuilder.cs ├── Lazy.Captcha.Core.csproj ├── Storage │ ├── Caches │ │ ├── CacheEntity.cs │ │ └── MemoryCache.cs │ ├── DefaultStorage.cs │ ├── IStorage.cs │ └── MemeoryStorage.cs └── fonts │ ├── actionj.ttf │ ├── epilog.ttf │ ├── fresnel.ttf │ ├── headache.ttf │ ├── kaiti.ttf │ ├── lexo.ttf │ ├── prefix.ttf │ ├── progbot.ttf │ ├── ransom.ttf │ ├── robot.ttf │ └── scandal.ttf ├── Lazy.Captcha.xUnit ├── Demo.cs ├── EvaluationEngineTest.cs ├── GlobalUsing.cs ├── Lazy.Captcha.xUnit.csproj └── inputs │ └── fb.jpg ├── LazyCaptcha.sln ├── README.md ├── README_V1.md ├── Sample.MvcFramework ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Areas │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Controllers │ │ └── HelpController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── ModelDescriptions │ │ ├── CollectionModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── EnumValueDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── ModelDescription.cs │ │ ├── ModelDescriptionGenerator.cs │ │ ├── ModelNameAttribute.cs │ │ ├── ModelNameHelper.cs │ │ ├── ParameterAnnotation.cs │ │ ├── ParameterDescription.cs │ │ └── SimpleTypeModelDescription.cs │ │ ├── Models │ │ └── HelpPageApiModel.cs │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs │ │ ├── HelpPageSampleKey.cs │ │ ├── ImageSample.cs │ │ ├── InvalidSample.cs │ │ ├── ObjectGenerator.cs │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ResourceModel.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs ├── Content │ ├── Site.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── Controllers │ ├── CaptchaController.cs │ └── HomeController.cs ├── Global.asax ├── Global.asax.cs ├── Properties │ └── AssemblyInfo.cs ├── Sample.MvcFramework.csproj ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-3.4.1.intellisense.js │ ├── jquery-3.4.1.js │ ├── jquery-3.4.1.min.js │ ├── jquery-3.4.1.min.map │ ├── jquery-3.4.1.slim.js │ ├── jquery-3.4.1.slim.min.js │ ├── jquery-3.4.1.slim.min.map │ └── modernizr-2.8.3.js ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── packages.config ├── Sample.NetCore ├── Controllers │ └── CaptchaController.cs ├── CustomFonts │ ├── BunnyeggsRegular-8M5aZ.ttf │ ├── KgHappy-wWZZ.ttf │ └── WhoaSaucePersonalUseBold-mLmV5.ttf ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── RandomCaptcha.cs ├── ResourceFontFamilysFinder.cs ├── Sample.NetCore.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── index.css │ ├── index.html │ ├── index.js │ ├── loading.gif │ ├── loading.png │ └── vue.min.js ├── Sample.Winfrom ├── App.config ├── Helpers │ ├── UIHelper.cs │ └── UnitHelper.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Models │ ├── CaptchaImageGeneratorOptionJsonModel.cs │ ├── CaptchaOptionsJsonModel.cs │ ├── CaptchaOptionsWrapper.cs │ ├── CaptchaTypeOption.cs │ ├── FontFamilyOption.cs │ └── Option.cs ├── OptionProviders │ ├── CaptchaTypeOptionProvider.cs │ └── FontFamilyOptionProvider.cs ├── PerformanceTest.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── Sample.Winfrom.Models.CaptchaTypeOption.datasource │ │ └── Sample.Winfrom.Models.FontFamilyOption.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Sample.Winfrom.csproj └── templates │ ├── highlight │ ├── jquery.highlight.css │ ├── jquery.highlight.js │ └── jquery.min.js │ ├── scripts │ └── demo.js │ └── tpl.html └── 字体裁剪 ├── kaiti.ttf ├── kaiti_output.ttf ├── words.txt └── 裁剪命令.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/.gitignore -------------------------------------------------------------------------------- /ConfigTool/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigTool/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/ConfigTool/Release.zip -------------------------------------------------------------------------------- /Images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Images/ARITHMETIC_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/ARITHMETIC_G.gif -------------------------------------------------------------------------------- /Images/ARITHMETIC_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/ARITHMETIC_N.gif -------------------------------------------------------------------------------- /Images/ARITHMETIC_ZH_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/ARITHMETIC_ZH_G.gif -------------------------------------------------------------------------------- /Images/ARITHMETIC_ZH_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/ARITHMETIC_ZH_N.gif -------------------------------------------------------------------------------- /Images/CHINESE_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/CHINESE_G.gif -------------------------------------------------------------------------------- /Images/CHINESE_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/CHINESE_N.gif -------------------------------------------------------------------------------- /Images/Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Config.png -------------------------------------------------------------------------------- /Images/DEFAULT_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/DEFAULT_G.gif -------------------------------------------------------------------------------- /Images/DEFAULT_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/DEFAULT_N.gif -------------------------------------------------------------------------------- /Images/Font_Actionj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Actionj.gif -------------------------------------------------------------------------------- /Images/Font_Epilog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Epilog.gif -------------------------------------------------------------------------------- /Images/Font_Fresnel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Fresnel.gif -------------------------------------------------------------------------------- /Images/Font_Headache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Headache.gif -------------------------------------------------------------------------------- /Images/Font_Kaiti.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Kaiti.gif -------------------------------------------------------------------------------- /Images/Font_Lexo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Lexo.gif -------------------------------------------------------------------------------- /Images/Font_Prefix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Prefix.gif -------------------------------------------------------------------------------- /Images/Font_Progbot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Progbot.gif -------------------------------------------------------------------------------- /Images/Font_Ransom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Ransom.gif -------------------------------------------------------------------------------- /Images/Font_Robot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Robot.gif -------------------------------------------------------------------------------- /Images/Font_Scandal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/Font_Scandal.gif -------------------------------------------------------------------------------- /Images/NUMBER_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/NUMBER_G.gif -------------------------------------------------------------------------------- /Images/NUMBER_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/NUMBER_N.gif -------------------------------------------------------------------------------- /Images/NUMBER_ZH_CN.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/NUMBER_ZH_CN.gif -------------------------------------------------------------------------------- /Images/NUMBER_ZH_CN_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/NUMBER_ZH_CN_G.gif -------------------------------------------------------------------------------- /Images/NUMBER_ZH_HK_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/NUMBER_ZH_HK_G.gif -------------------------------------------------------------------------------- /Images/NUMBER_ZH_HK_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/NUMBER_ZH_HK_N.gif -------------------------------------------------------------------------------- /Images/WORD_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_G.gif -------------------------------------------------------------------------------- /Images/WORD_LOWER_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_LOWER_G.gif -------------------------------------------------------------------------------- /Images/WORD_LOWER_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_LOWER_N.gif -------------------------------------------------------------------------------- /Images/WORD_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_N.gif -------------------------------------------------------------------------------- /Images/WORD_NUMBER_LOWER_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_NUMBER_LOWER_G.gif -------------------------------------------------------------------------------- /Images/WORD_NUMBER_LOWER_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_NUMBER_LOWER_N.gif -------------------------------------------------------------------------------- /Images/WORD_NUMBER_UPPER_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_NUMBER_UPPER_G.gif -------------------------------------------------------------------------------- /Images/WORD_NUMBER_UPPER_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_NUMBER_UPPER_N.gif -------------------------------------------------------------------------------- /Images/WORD_UPPER_G.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_UPPER_G.gif -------------------------------------------------------------------------------- /Images/WORD_UPPER_N.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/WORD_UPPER_N.gif -------------------------------------------------------------------------------- /Images/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/bold.gif -------------------------------------------------------------------------------- /Images/font_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/font_demo.png -------------------------------------------------------------------------------- /Images/normal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Images/normal.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/LICENSE -------------------------------------------------------------------------------- /Lazy.Captcha.Core/CaptchaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/CaptchaBuilder.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/CaptchaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/CaptchaData.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/CaptchaHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/CaptchaHelper.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/CaptchaOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/CaptchaOptions.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/CaptchaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/CaptchaService.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/CaptchaServiceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/CaptchaServiceBuilder.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/CaptchaServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/CaptchaServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/CaptchaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/CaptchaType.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/DefaultCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/DefaultCaptcha.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/DefaultColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/DefaultColors.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/DefaultFontFamilys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/DefaultFontFamilys.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/EvaluationEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/EvaluationEngine.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Code/Characters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Code/Characters.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Code/DefaultCaptchaCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Code/DefaultCaptchaCodeGenerator.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Code/ExpressionEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Code/ExpressionEvaluator.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Code/ICaptchaCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Code/ICaptchaCodeGenerator.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Extensions/ByteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Extensions/ByteExtensions.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Extensions/CaptchaTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Extensions/CaptchaTypeExtensions.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/DefaultCaptchaImageGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/DefaultCaptchaImageGenerator.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/Gif/AnimatedGifEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/Gif/AnimatedGifEncoder.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/Gif/LZWEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/Gif/LZWEncoder.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/Gif/NeuQuant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/Gif/NeuQuant.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/ICaptchaImageGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/ICaptchaImageGenerator.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/ICaptchaImageGeneratorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/ICaptchaImageGeneratorBuilder.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/Models/BubbleGraphicDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/Models/BubbleGraphicDescription.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/Models/InterferenceLineGraphicDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/Models/InterferenceLineGraphicDescription.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/Models/TextGraphicDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/Models/TextGraphicDescription.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/Option/CaptchaImageGeneratorOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/Option/CaptchaImageGeneratorOption.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Generator/Image/Option/DefaultCaptchaImageOptionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Generator/Image/Option/DefaultCaptchaImageOptionBuilder.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/ICaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/ICaptcha.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/ICaptchaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/ICaptchaBuilder.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Lazy.Captcha.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Lazy.Captcha.Core.csproj -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Storage/Caches/CacheEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Storage/Caches/CacheEntity.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Storage/Caches/MemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Storage/Caches/MemoryCache.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Storage/DefaultStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Storage/DefaultStorage.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Storage/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Storage/IStorage.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/Storage/MemeoryStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/Storage/MemeoryStorage.cs -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/actionj.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/actionj.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/epilog.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/epilog.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/fresnel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/fresnel.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/headache.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/headache.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/kaiti.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/kaiti.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/lexo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/lexo.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/prefix.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/prefix.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/progbot.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/progbot.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/ransom.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/ransom.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/robot.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/robot.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.Core/fonts/scandal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.Core/fonts/scandal.ttf -------------------------------------------------------------------------------- /Lazy.Captcha.xUnit/Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.xUnit/Demo.cs -------------------------------------------------------------------------------- /Lazy.Captcha.xUnit/EvaluationEngineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.xUnit/EvaluationEngineTest.cs -------------------------------------------------------------------------------- /Lazy.Captcha.xUnit/GlobalUsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.xUnit/GlobalUsing.cs -------------------------------------------------------------------------------- /Lazy.Captcha.xUnit/Lazy.Captcha.xUnit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.xUnit/Lazy.Captcha.xUnit.csproj -------------------------------------------------------------------------------- /Lazy.Captcha.xUnit/inputs/fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Lazy.Captcha.xUnit/inputs/fb.jpg -------------------------------------------------------------------------------- /LazyCaptcha.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/LazyCaptcha.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/README.md -------------------------------------------------------------------------------- /README_V1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/README_V1.md -------------------------------------------------------------------------------- /Sample.MvcFramework/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/Site.css -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/bootstrap.css -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/bootstrap.css.map -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Sample.MvcFramework/Content/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Content/bootstrap.min.css.map -------------------------------------------------------------------------------- /Sample.MvcFramework/Controllers/CaptchaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Controllers/CaptchaController.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Global.asax -------------------------------------------------------------------------------- /Sample.MvcFramework/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Global.asax.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.MvcFramework/Sample.MvcFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Sample.MvcFramework.csproj -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/jquery-3.4.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/jquery-3.4.1.intellisense.js -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/jquery-3.4.1.js -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/jquery-3.4.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/jquery-3.4.1.min.map -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/jquery-3.4.1.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/jquery-3.4.1.slim.js -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/jquery-3.4.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/jquery-3.4.1.slim.min.js -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/jquery-3.4.1.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/jquery-3.4.1.slim.min.map -------------------------------------------------------------------------------- /Sample.MvcFramework/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /Sample.MvcFramework/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Views/Web.config -------------------------------------------------------------------------------- /Sample.MvcFramework/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Sample.MvcFramework/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Web.Debug.config -------------------------------------------------------------------------------- /Sample.MvcFramework/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Web.Release.config -------------------------------------------------------------------------------- /Sample.MvcFramework/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/Web.config -------------------------------------------------------------------------------- /Sample.MvcFramework/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/favicon.ico -------------------------------------------------------------------------------- /Sample.MvcFramework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Sample.MvcFramework/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Sample.MvcFramework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Sample.MvcFramework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Sample.MvcFramework/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Sample.MvcFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.MvcFramework/packages.config -------------------------------------------------------------------------------- /Sample.NetCore/Controllers/CaptchaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/Controllers/CaptchaController.cs -------------------------------------------------------------------------------- /Sample.NetCore/CustomFonts/BunnyeggsRegular-8M5aZ.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/CustomFonts/BunnyeggsRegular-8M5aZ.ttf -------------------------------------------------------------------------------- /Sample.NetCore/CustomFonts/KgHappy-wWZZ.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/CustomFonts/KgHappy-wWZZ.ttf -------------------------------------------------------------------------------- /Sample.NetCore/CustomFonts/WhoaSaucePersonalUseBold-mLmV5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/CustomFonts/WhoaSaucePersonalUseBold-mLmV5.ttf -------------------------------------------------------------------------------- /Sample.NetCore/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/Dockerfile -------------------------------------------------------------------------------- /Sample.NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/Program.cs -------------------------------------------------------------------------------- /Sample.NetCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /Sample.NetCore/RandomCaptcha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/RandomCaptcha.cs -------------------------------------------------------------------------------- /Sample.NetCore/ResourceFontFamilysFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/ResourceFontFamilysFinder.cs -------------------------------------------------------------------------------- /Sample.NetCore/Sample.NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/Sample.NetCore.csproj -------------------------------------------------------------------------------- /Sample.NetCore/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/appsettings.Development.json -------------------------------------------------------------------------------- /Sample.NetCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/appsettings.json -------------------------------------------------------------------------------- /Sample.NetCore/wwwroot/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/wwwroot/index.css -------------------------------------------------------------------------------- /Sample.NetCore/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/wwwroot/index.html -------------------------------------------------------------------------------- /Sample.NetCore/wwwroot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/wwwroot/index.js -------------------------------------------------------------------------------- /Sample.NetCore/wwwroot/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/wwwroot/loading.gif -------------------------------------------------------------------------------- /Sample.NetCore/wwwroot/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/wwwroot/loading.png -------------------------------------------------------------------------------- /Sample.NetCore/wwwroot/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.NetCore/wwwroot/vue.min.js -------------------------------------------------------------------------------- /Sample.Winfrom/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/App.config -------------------------------------------------------------------------------- /Sample.Winfrom/Helpers/UIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Helpers/UIHelper.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Helpers/UnitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Helpers/UnitHelper.cs -------------------------------------------------------------------------------- /Sample.Winfrom/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/MainForm.Designer.cs -------------------------------------------------------------------------------- /Sample.Winfrom/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/MainForm.cs -------------------------------------------------------------------------------- /Sample.Winfrom/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/MainForm.resx -------------------------------------------------------------------------------- /Sample.Winfrom/Models/CaptchaImageGeneratorOptionJsonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Models/CaptchaImageGeneratorOptionJsonModel.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Models/CaptchaOptionsJsonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Models/CaptchaOptionsJsonModel.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Models/CaptchaOptionsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Models/CaptchaOptionsWrapper.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Models/CaptchaTypeOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Models/CaptchaTypeOption.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Models/FontFamilyOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Models/FontFamilyOption.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Models/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Models/Option.cs -------------------------------------------------------------------------------- /Sample.Winfrom/OptionProviders/CaptchaTypeOptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/OptionProviders/CaptchaTypeOptionProvider.cs -------------------------------------------------------------------------------- /Sample.Winfrom/OptionProviders/FontFamilyOptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/OptionProviders/FontFamilyOptionProvider.cs -------------------------------------------------------------------------------- /Sample.Winfrom/PerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/PerformanceTest.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Program.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Properties/DataSources/Sample.Winfrom.Models.CaptchaTypeOption.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Properties/DataSources/Sample.Winfrom.Models.CaptchaTypeOption.datasource -------------------------------------------------------------------------------- /Sample.Winfrom/Properties/DataSources/Sample.Winfrom.Models.FontFamilyOption.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Properties/DataSources/Sample.Winfrom.Models.FontFamilyOption.datasource -------------------------------------------------------------------------------- /Sample.Winfrom/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Properties/Resources.resx -------------------------------------------------------------------------------- /Sample.Winfrom/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Sample.Winfrom/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Properties/Settings.settings -------------------------------------------------------------------------------- /Sample.Winfrom/Sample.Winfrom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/Sample.Winfrom.csproj -------------------------------------------------------------------------------- /Sample.Winfrom/templates/highlight/jquery.highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/templates/highlight/jquery.highlight.css -------------------------------------------------------------------------------- /Sample.Winfrom/templates/highlight/jquery.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/templates/highlight/jquery.highlight.js -------------------------------------------------------------------------------- /Sample.Winfrom/templates/highlight/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/templates/highlight/jquery.min.js -------------------------------------------------------------------------------- /Sample.Winfrom/templates/scripts/demo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sample.Winfrom/templates/tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/Sample.Winfrom/templates/tpl.html -------------------------------------------------------------------------------- /字体裁剪/kaiti.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/字体裁剪/kaiti.ttf -------------------------------------------------------------------------------- /字体裁剪/kaiti_output.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/字体裁剪/kaiti_output.ttf -------------------------------------------------------------------------------- /字体裁剪/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/字体裁剪/words.txt -------------------------------------------------------------------------------- /字体裁剪/裁剪命令.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pojianbing/LazyCaptcha/HEAD/字体裁剪/裁剪命令.txt --------------------------------------------------------------------------------