update: use custom font
This commit is contained in:
parent
8cc4044e70
commit
5d92cd4458
13
captcha.go
13
captcha.go
|
@ -5,7 +5,6 @@ import (
|
||||||
"github.com/golang/freetype"
|
"github.com/golang/freetype"
|
||||||
"github.com/golang/freetype/truetype"
|
"github.com/golang/freetype/truetype"
|
||||||
"golang.org/x/image/font"
|
"golang.org/x/image/font"
|
||||||
"golang.org/x/image/font/gofont/goregular"
|
|
||||||
"image"
|
"image"
|
||||||
"image/color"
|
"image/color"
|
||||||
"image/draw"
|
"image/draw"
|
||||||
|
@ -34,7 +33,7 @@ type Options struct {
|
||||||
// It defaults to 4.
|
// It defaults to 4.
|
||||||
TextLength int
|
TextLength int
|
||||||
// CurveNumber is the number of curves to draw on captcha image.
|
// CurveNumber is the number of curves to draw on captcha image.
|
||||||
// It defaults to 3.
|
// It defaults to 2.
|
||||||
CurveNumber int
|
CurveNumber int
|
||||||
|
|
||||||
width int
|
width int
|
||||||
|
@ -46,7 +45,7 @@ func newDefaultOption(width, height int) *Options {
|
||||||
BackgroundColor: color.Transparent,
|
BackgroundColor: color.Transparent,
|
||||||
CharPreset: charPreset,
|
CharPreset: charPreset,
|
||||||
TextLength: 4,
|
TextLength: 4,
|
||||||
CurveNumber: 3,
|
CurveNumber: 2,
|
||||||
width: width,
|
width: width,
|
||||||
height: height,
|
height: height,
|
||||||
}
|
}
|
||||||
|
@ -73,7 +72,7 @@ func (data *Data) WriteTo(w io.Writer) error {
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
var err error
|
var err error
|
||||||
ttfFont, err = freetype.ParseFont(goregular.TTF)
|
ttfFont, err = freetype.ParseFont(TTF)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
@ -110,7 +109,7 @@ func randomText(opts *Options) (text string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func drawNoise(img *image.NRGBA, opts *Options) {
|
func drawNoise(img *image.NRGBA, opts *Options) {
|
||||||
noiseCount := (opts.width * opts.height) / 18
|
noiseCount := (opts.width * opts.height) / 28
|
||||||
for i := 0; i < noiseCount; i++ {
|
for i := 0; i < noiseCount; i++ {
|
||||||
x := rng.Intn(opts.width)
|
x := rng.Intn(opts.width)
|
||||||
y := rng.Intn(opts.height)
|
y := rng.Intn(opts.height)
|
||||||
|
@ -166,7 +165,7 @@ func randomDarkGray() color.Gray {
|
||||||
|
|
||||||
func drawText(text string, img *image.NRGBA, opts *Options) error {
|
func drawText(text string, img *image.NRGBA, opts *Options) error {
|
||||||
ctx := freetype.NewContext()
|
ctx := freetype.NewContext()
|
||||||
ctx.SetDPI(72.0)
|
ctx.SetDPI(92.0)
|
||||||
ctx.SetClip(img.Bounds())
|
ctx.SetClip(img.Bounds())
|
||||||
ctx.SetDst(img)
|
ctx.SetDst(img)
|
||||||
ctx.SetHinting(font.HintingFull)
|
ctx.SetHinting(font.HintingFull)
|
||||||
|
@ -175,7 +174,7 @@ func drawText(text string, img *image.NRGBA, opts *Options) error {
|
||||||
fontSpacing := opts.width / len(text)
|
fontSpacing := opts.width / len(text)
|
||||||
|
|
||||||
for idx, char := range text {
|
for idx, char := range text {
|
||||||
fontScale := 1 + float64(rng.Intn(7))/float64(9)
|
fontScale := 1 + rng.Float64() * 0.5
|
||||||
fontSize := float64(opts.height) / fontScale
|
fontSize := float64(opts.height) / fontScale
|
||||||
ctx.SetFontSize(fontSize)
|
ctx.SetFontSize(fontSize)
|
||||||
ctx.SetSrc(image.NewUniform(randomDarkGray()))
|
ctx.SetSrc(image.NewUniform(randomDarkGray()))
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"go/format"
|
||||||
|
"path/filepath"
|
||||||
|
)
|
||||||
|
|
||||||
|
// This program generates a go file for Comismsh font
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
src, err := ioutil.ReadFile("Comismsh.ttf")
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
buf := new(bytes.Buffer)
|
||||||
|
fmt.Fprint(buf, "// DO NOT EDIT. This file is generated.\n\n")
|
||||||
|
fmt.Fprint(buf, "package captcha\n\n")
|
||||||
|
fmt.Fprint(buf, "// The following is Comismsh TrueType font data.\n")
|
||||||
|
fmt.Fprint(buf, "var TTF = []byte{")
|
||||||
|
for i, x := range src {
|
||||||
|
if i&15 == 0 {
|
||||||
|
buf.WriteByte('\n')
|
||||||
|
}
|
||||||
|
fmt.Fprintf(buf, "%#02x,", x)
|
||||||
|
}
|
||||||
|
fmt.Fprint(buf, "\n}\n")
|
||||||
|
|
||||||
|
dst, err := format.Source(buf.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
if err := ioutil.WriteFile(filepath.Join("../", "font.go"), dst, 0666); err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue