qr.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package image
  2. import (
  3. "fmt"
  4. "github.com/skip2/go-qrcode"
  5. "gopkg.in/gographics/imagick.v3/imagick"
  6. "icloudapp.cn/tools/util"
  7. "image/color"
  8. "sync"
  9. )
  10. type QR struct {
  11. Cache
  12. Value string
  13. FrontColor string
  14. BackgroundColor string
  15. QRSize *Size
  16. }
  17. var QROnce sync.Once
  18. var QRInstance *QR
  19. func NewQR() *QR {
  20. QROnce.Do(func() {
  21. QRInstance = &QR{}
  22. })
  23. return QRInstance
  24. }
  25. func (q *QR) SetCache(path string) {
  26. q.Cache.SetCache(path)
  27. }
  28. func (q *QR) SetValue(value string) {
  29. q.Value = value
  30. }
  31. func (q *QR) SetFrontColor(frontColor string) {
  32. q.FrontColor = frontColor
  33. }
  34. func (q *QR) SetBackgroundColor(backgroundColor string) {
  35. q.BackgroundColor = backgroundColor
  36. }
  37. func (q *QR) SetSize(width, height uint) {
  38. q.QRSize = NewSize(width, height)
  39. }
  40. func (q *QR) Create() (*imagick.MagickWand, error) {
  41. //file := fmt.Sprintf("%s.png", util.Sign(q.Value, "QR"))
  42. file := q.CacheFile(util.Sign(q.Value, "QR"), "png")
  43. if q.BackgroundColor == "" {
  44. q.BackgroundColor = "#000"
  45. }
  46. if q.FrontColor == "" {
  47. q.FrontColor = "#fff"
  48. }
  49. _, background, _ := Alpha(q.BackgroundColor)
  50. _, front, _ := Alpha(q.FrontColor)
  51. background.A = 1
  52. backgroundColor := color.RGBA{R: background.R, G: background.G, B: background.B, A: background.A}
  53. front.A = 1
  54. frontColor := color.RGBA{R: front.R, G: front.G, B: front.B, A: front.A}
  55. if q.QRSize.Width == 0 {
  56. q.QRSize.Width = 200
  57. }
  58. qr, err := qrcode.New(q.Value, qrcode.Medium)
  59. if err != nil {
  60. return nil, err
  61. }
  62. qr.Image(int(q.QRSize.Width))
  63. qr.DisableBorder = true
  64. qr.ForegroundColor = color.RGBA{R: 0x33, G: 0x33, B: 0x66, A: 0xff}
  65. qr.BackgroundColor = color.RGBA{R: 0xef, G: 0xef, B: 0xef, A: 0xff}
  66. //qr.ForegroundColor = frontColor
  67. //qr.BackgroundColor = backgroundColor
  68. fmt.Println("background", backgroundColor, frontColor)
  69. if err = qr.WriteFile(int(q.QRSize.Width), file); err != nil {
  70. return nil, util.NewError("qrcode.WriteColorFile", err.Error())
  71. }
  72. /*if err := qrcode.WriteColorFile(q.Value, qrcode.Medium, int(q.QRSize.Width), color.White, color.Black, file); err != nil {
  73. return nil, util.NewError("qrcode.WriteColorFile", err.Error())
  74. }*/
  75. qrWM := imagick.NewMagickWand()
  76. if err = qrWM.ReadImage(file); err != nil {
  77. return nil, util.NewError("qrWM.SetImageFilename", err.Error())
  78. }
  79. if err = qrWM.SetSize(q.QRSize.Width, q.QRSize.Height); err != nil {
  80. return nil, util.NewError("qrWM.SetSize", err.Error())
  81. }
  82. return qrWM, nil
  83. }