all repos — captcha @ 797447596cf268e3bf3a1f4459c3977ba6415605

Go package captcha implements generation and verification of image and audio CAPTCHAs.

cmd/image/main.go (view raw)

 1package main
 2
 3import (
 4	"github.com/dchest/captcha"
 5	"os"
 6)
 7
 8func main() {
 9	img, _ := captcha.NewRandomImage(captcha.StdLength, captcha.StdWidth, captcha.StdHeight)
10	img.WriteTo(os.Stdout)
11}