cmd: use standard width and height for image.
Dmitry Chestnykh dmitry@codingrobots.com
Thu, 21 Apr 2011 17:53:34 +0200
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
cmd/main.go
→
cmd/main.go
@@ -6,6 +6,6 @@ "os"
) func main() { - img, _ := captcha.NewRandomImage(230, 60) + img, _ := captcha.NewRandomImage(captcha.StdWidth, captcha.StdHeight) img.PNGEncode(os.Stdout) }