Package captcha provides an easy to use, unopinionated API for captcha generation.
Why another captcha generator?
I want a simple and framework-independent way to generate captcha. It also should be flexible, at least allow me to pick my favorite font.
install
go get github.com/steambap/captcha
usage
func handle(w http.ResponseWriter, r *http.Request) {
data, _ := captcha.New(150, 50)
session.Values["captcha"] = data.Text
session.Save(r, w)
data.WriteImage(w)
}
documentation |
example
sample image
Contributing
If your found a bug, please contribute!
see contributing.md for more detail.
License
MIT