CAPTCHA for go
This repository has been archived on 2024-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Weilin Shi 25375da284 add: go report in readme
update: minor fix for go report
2017-09-19 14:10:49 +08:00
.idea add: basic shape for API 2017-09-16 18:04:28 +08:00
example add: go report in readme 2017-09-19 14:10:49 +08:00
fonts add: go report in readme 2017-09-19 14:10:49 +08:00
.gitignore add: basic shape for API 2017-09-16 18:04:28 +08:00
.travis.yml add: hsv for better random color 2017-09-19 13:12:03 +08:00
LICENSE Initial commit 2017-09-12 14:52:16 +08:00
README.md add: go report in readme 2017-09-19 14:10:49 +08:00
captcha.go add: go report in readme 2017-09-19 14:10:49 +08:00
font.go add: go report in readme 2017-09-19 14:10:49 +08:00
hsva.go add: hsv for better random color 2017-09-19 13:12:03 +08:00
hsva_test.go add: hsv for better random color 2017-09-19 13:12:03 +08:00

README.md

Package captcha provides a simple API for captcha generation

GoDoc Build Status Go Report Card

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)
}

documentation | example

sample image

image

License

MIT