all repos — captcha @ 59a641ef537290ef95f17c86cfbce15a8f5f02bc

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

cmd/main.go (view raw)

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