2018-04-26 03:03:29 +01:00
|
|
|
> Package captcha provides an easy to use, unopinionated API for captcha generation.
|
2017-09-19 06:12:03 +01:00
|
|
|
|
2017-09-20 02:51:27 +01:00
|
|
|
<div>
|
2017-09-19 06:12:03 +01:00
|
|
|
|
|
|
|
[![GoDoc](https://godoc.org/github.com/steambap/captcha?status.svg)](https://godoc.org/github.com/steambap/captcha)
|
2019-10-24 08:56:39 +01:00
|
|
|
[![Build Status](https://github.com/steambap/captcha/workflows/CI/badge.svg)](https://github.com/steambap/captcha/actions?workflow=CI)
|
2017-09-19 12:17:25 +01:00
|
|
|
[![codecov](https://codecov.io/gh/steambap/captcha/branch/master/graph/badge.svg)](https://codecov.io/gh/steambap/captcha)
|
2017-09-19 07:10:49 +01:00
|
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/steambap/captcha)](https://goreportcard.com/report/github.com/steambap/captcha)
|
2017-09-19 06:12:03 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2017-10-05 15:00:16 +01:00
|
|
|
## 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.
|
|
|
|
|
2017-09-19 06:12:03 +01:00
|
|
|
## install
|
|
|
|
```
|
|
|
|
go get github.com/steambap/captcha
|
|
|
|
```
|
|
|
|
|
|
|
|
## usage
|
|
|
|
```Go
|
|
|
|
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
|
2017-10-10 04:05:46 +01:00
|
|
|
data.WriteImage(w)
|
2017-09-19 06:12:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
[documentation](https://godoc.org/github.com/steambap/captcha) |
|
2017-10-07 09:13:12 +01:00
|
|
|
[example](example/basic/main.go)
|
2017-09-19 06:12:03 +01:00
|
|
|
|
|
|
|
## sample image
|
|
|
|
![image](example/captcha.png)
|
|
|
|
|
2017-09-29 02:32:04 +01:00
|
|
|
![image](example/captcha-math.png)
|
|
|
|
|
2017-09-21 01:37:43 +01:00
|
|
|
## Contributing
|
|
|
|
If your found a bug, please contribute!
|
2018-04-26 03:03:29 +01:00
|
|
|
see [contributing.md](contributing.md) for more detail.
|
2017-09-21 01:37:43 +01:00
|
|
|
|
2017-09-19 06:12:03 +01:00
|
|
|
## License
|
2019-07-04 07:15:45 +01:00
|
|
|
[MIT](LICENSE.md)
|