1.2 KiB
1.2 KiB
Package captcha provides a simple API for captcha generation
install
go get github.com/steambap/captcha
usage
func handle(w http.ResponseWriter, r *http.Request) {
// create a captcha of 150x50px
data, _ := captcha.New(150, 50)
// session come from other library such as gorilla/sessions
session.Values["captcha"] = data.Text
session.Save(r, w)
// send image data to client
data.WriteTo(w)
}
sample image
Contributing
If your found a bug, please contribute! see contributing.md for more detail