123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package image
- import (
- "fmt"
- "github.com/gographics/gmagick"
- "github.com/skip2/go-qrcode"
- "icloudapp.cn/tools/util"
- "image/color"
- "sync"
- )
- type QR struct {
- Cache
- Value string
- FrontColor string
- BackgroundColor string
- QRSize *Size
- }
- var QROnce sync.Once
- var QRInstance *QR
- func NewQR() *QR {
- QROnce.Do(func() {
- QRInstance = &QR{}
- })
- return QRInstance
- }
- func (q *QR) SetCache(path string) {
- q.Cache.SetCache(path)
- }
- func (q *QR) SetValue(value string) {
- q.Value = value
- }
- func (q *QR) SetFrontColor(frontColor string) {
- q.FrontColor = frontColor
- }
- func (q *QR) SetBackgroundColor(backgroundColor string) {
- q.BackgroundColor = backgroundColor
- }
- func (q *QR) SetSize(width, height uint) {
- q.QRSize = NewSize(width, height)
- }
- func (q *QR) Create() (*gmagick.MagickWand, error) {
-
- file := q.CacheFile(util.Sign(q.Value, "QR"), "png")
- if q.BackgroundColor == "" {
- q.BackgroundColor = "#000"
- }
- if q.FrontColor == "" {
- q.FrontColor = "#fff"
- }
- _, background, _ := Alpha(q.BackgroundColor)
- _, front, _ := Alpha(q.FrontColor)
- background.A = 1
- backgroundColor := color.RGBA{R: background.R, G: background.G, B: background.B, A: background.A}
- front.A = 1
- frontColor := color.RGBA{R: front.R, G: front.G, B: front.B, A: front.A}
- if q.QRSize.Width == 0 {
- q.QRSize.Width = 200
- }
- qr, err := qrcode.New(q.Value, qrcode.Medium)
- if err != nil {
- return nil, err
- }
- qr.Image(int(q.QRSize.Width))
- qr.DisableBorder = true
- qr.ForegroundColor = color.RGBA{R: 0x33, G: 0x33, B: 0x66, A: 0xff}
- qr.BackgroundColor = color.RGBA{R: 0xef, G: 0xef, B: 0xef, A: 0xff}
-
-
- fmt.Println("background", backgroundColor, frontColor)
- if err = qr.WriteFile(int(q.QRSize.Width), file); err != nil {
- return nil, util.NewError("qrcode.WriteColorFile", err.Error())
- }
-
- qrWM := gmagick.NewMagickWand()
- if err = qrWM.ReadImage(file); err != nil {
- return nil, util.NewError("qrWM.SetImageFilename", err.Error())
- }
- if err = qrWM.SetSize(q.QRSize.Width, q.QRSize.Height); err != nil {
- return nil, util.NewError("qrWM.SetSize", err.Error())
- }
- return qrWM, nil
- }
|