all repos — captcha @ e40250a1247fc6f98cb9d209ffe875af18f7d68c

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}