CaptchaGen.NetCore icon indicating copy to clipboard operation
CaptchaGen.NetCore copied to clipboard

Captcha generator for .net core

CaptchaGen.NetCore

Captcha generator for .net core migration from CaptchaGen by yangzhongke from rupeng.com

Nuget Install:

Install-Package CaptchaGen.NetCore

Example Code:

    string code = ImageFactory.CreateCode(5);
    using (FileStream fs = File.OpenWrite("d:/1.jpg"))
    using (Stream picStream = ImageFactory.BuildImage(code, 50, 100, 20,10, ImageFormatType.Jpeg))
    {
	picStream.CopyTo(fs);
    }