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
Tracker-Friendly 669a328c35 Moved to concord 2024-07-10 16:49:19 +01:00
example Moved to concord 2024-07-10 16:49:19 +01:00
fonts upgrade to use embed from Go 1.16 2021-07-28 21:22:23 +08:00
.gitignore Update travis CI config and clean up gitignore 2018-02-23 10:07:13 +08:00
LICENSE update deps 2024-01-13 09:53:15 +08:00
README.md Moved to concord 2024-07-10 16:49:19 +01:00
captcha.go Update captcha.go 2024-05-02 00:29:35 +01:00
captcha_test.go fix #7 2022-06-27 13:00:35 +08:00
code-of-conduct.md update code of conduct 2021-08-24 21:15:10 +08:00
contributing.md add: files for improve github community rating 2017-09-21 08:37:43 +08:00
go.mod Moved to concord 2024-07-10 16:49:19 +01:00
go.sum update deps 2024-01-13 09:53:15 +08:00
history.md v1.3.0 2018-11-07 15:14:22 +08:00
hsva.go add: hsv for better random color 2017-09-19 13:12:03 +08:00
hsva_test.go update: try to add codecov coverage 2017-09-20 09:03:13 +08:00

README.md

Package captcha provides an easy to use, unopinionated API for captcha generation.

PkgGoDev Go Report Card

Why another captcha generator?

Because I can.

install

go get concord.hectabit.org/HectaBit/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.WriteImage(w)
}

documentation | example | font example

sample image

image

image

Compatibility

This package uses embed package from Go 1.16. If for some reasons you have to use pre 1.16 version of Go, reference pre 1.4 version of this module in your go.mod.

Contributing

If your found a bug, please contribute! see contributing.md for more detail.

License

MIT