text.go 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. package image
  2. import (
  3. "fmt"
  4. "github.com/gographics/gmagick"
  5. "icloudapp.cn/tools/util"
  6. "strings"
  7. )
  8. type Text struct {
  9. //字体内容
  10. Text string
  11. //字体
  12. Font string
  13. //字体大小
  14. FontSize float64
  15. //字体格式
  16. FontFamily string
  17. //文字颜色
  18. Color string
  19. //文字区域背景颜色
  20. Background string
  21. //文字背景色
  22. UnderColor string
  23. //下划线
  24. UnderLine bool
  25. //删除线
  26. Strike bool
  27. //斜体
  28. Italic bool
  29. //粗体
  30. Bold bool
  31. //字体间隙
  32. WordSpace int
  33. //是否自动换行
  34. Wrap bool
  35. //对齐方式 left center right
  36. Align string
  37. //坐标
  38. Coordinate *Point
  39. //文字区域大小
  40. ViewSize *Size
  41. Angle int64
  42. }
  43. // NewText text对象
  44. func NewText(font string, fontSize float64, fontFamily string) *Text {
  45. t := &Text{
  46. Font: font,
  47. FontSize: fontSize,
  48. FontFamily: fontFamily,
  49. }
  50. t.Clean()
  51. return t
  52. }
  53. func (t *Text) SetText(text string) {
  54. t.Text = text
  55. }
  56. func (t *Text) SetFont(font string) {
  57. t.Font = font
  58. }
  59. func (t *Text) SetFontSize(fontSize float64) {
  60. t.FontSize = fontSize
  61. }
  62. func (t *Text) SetFontFamily(fontFamily string) {
  63. t.FontFamily = fontFamily
  64. }
  65. func (t *Text) SetColor(color string) {
  66. t.Color = color
  67. }
  68. func (t *Text) SetBackground(background string) {
  69. t.Background = background
  70. }
  71. func (t *Text) SetUnderColor(underColor string) {
  72. t.UnderColor = underColor
  73. }
  74. func (t *Text) SetUnderLine(underLine bool) {
  75. t.UnderLine = underLine
  76. }
  77. func (t *Text) SetStrike(strike bool) {
  78. t.Strike = strike
  79. }
  80. func (t *Text) SetBius(bius string) {
  81. t.SetItalic(false)
  82. t.SetBold(false)
  83. t.SetUnderLine(false)
  84. t.SetStrike(false)
  85. for _, v := range bius {
  86. if string(v) == "i" {
  87. t.SetItalic(true)
  88. }
  89. if string(v) == "b" {
  90. t.SetBold(true)
  91. }
  92. if string(v) == "u" {
  93. t.SetUnderLine(true)
  94. }
  95. if string(v) == "s" {
  96. t.SetStrike(true)
  97. }
  98. }
  99. }
  100. func (t *Text) SetItalic(italic bool) {
  101. t.Italic = italic
  102. }
  103. func (t *Text) SetBold(bold bool) {
  104. t.Bold = bold
  105. }
  106. func (t *Text) SetWordSpace(wordSpace int) {
  107. t.WordSpace = wordSpace
  108. }
  109. func (t *Text) SetWrap(wrap bool) {
  110. t.Wrap = wrap
  111. }
  112. func (t *Text) SetAlign(align string) {
  113. t.Align = align
  114. }
  115. func (t *Text) SetPoint(x, y float64) {
  116. t.Coordinate = NewPoint(x, y)
  117. }
  118. func (t *Text) SetSize(w, h uint) {
  119. t.ViewSize = NewSize(w, h)
  120. }
  121. func (t *Text) SetAngle(angle int64) {
  122. t.Angle = angle
  123. }
  124. func (t *Text) Create() (*gmagick.MagickWand, error) {
  125. txtDraw := gmagick.NewDrawingWand()
  126. if t.Font != "" {
  127. txtDraw.SetFont(fmt.Sprintf("upload/fonts/%s", t.Font))
  128. }
  129. if t.FontSize == 0 {
  130. t.FontSize = 12
  131. }
  132. txtDraw.SetFontSize(t.FontSize)
  133. if t.FontFamily != "" {
  134. txtDraw.SetFontFamily(t.FontFamily)
  135. }
  136. if t.Color != "" {
  137. tColor := Pixel(t.Color)
  138. //tColor.SetOpacity(0)
  139. txtDraw.SetFillColor(tColor)
  140. }
  141. if t.Italic || t.Bold || t.UnderLine || t.Strike {
  142. txtDraw.SetStrokeColor(Pixel(t.Color))
  143. }
  144. if t.Italic {
  145. txtDraw.SkewX(-12)
  146. }
  147. txtDraw.SetFontStyle(gmagick.STYLE_NORMAL)
  148. if t.Bold {
  149. //txtDraw.SetStrokeWidth(1)
  150. txtDraw.SetFontStyle(gmagick.STYLE_OBLIQUE)
  151. }
  152. if t.UnderLine {
  153. txtDraw.SetTextDecoration(gmagick.DECORATION_UNDERLINE)
  154. }
  155. if t.Background != "" {
  156. tb := Pixel(t.Background)
  157. //tb.SetOpacity(0)
  158. txtDraw.SetTextUnderColor(tb)
  159. }
  160. txtDraw.SetTextEncoding("UTF-8")
  161. if t.Wrap {
  162. txtArr := t.WapText(txtDraw, t.Text, t.Wrap)
  163. fmt.Println("txtArr", txtArr)
  164. }
  165. //透明图片
  166. transPNG := util.TransparentPNG()
  167. subMw := gmagick.NewMagickWand()
  168. if err := subMw.ReadImageBlob(transPNG); err != nil {
  169. return nil, util.NewError("subMw.ReadImageBlob", err.Error())
  170. }
  171. if err := subMw.SetImageFormat("PNG"); err != nil {
  172. return nil, util.NewError("subMw.SetImageFormat", err.Error())
  173. }
  174. if err := subMw.ResizeImage(t.ViewSize.Width, t.ViewSize.Height, gmagick.FILTER_LANCZOS, 1); err != nil {
  175. return nil, util.NewError("subMw.ResizeImage", err.Error())
  176. }
  177. metrics := subMw.QueryFontMetrics(txtDraw, t.Text)
  178. alignX := 0.0
  179. if t.Align == "center" {
  180. alignX = float64(int(((float64(t.ViewSize.Width)-metrics.TextWidth)/2)*100)) / 100
  181. }
  182. if t.Align == "right" {
  183. alignX = float64(t.ViewSize.Width) - metrics.TextWidth
  184. }
  185. if t.Strike {
  186. txtDraw.SetStrokeDashOffset(metrics.TextHeight)
  187. txtDraw.SetTextDecoration(gmagick.DECORATION_LINE_THROUGH)
  188. }
  189. txtDraw.Annotation(alignX, metrics.Ascender, t.Text)
  190. if t.Background != "" {
  191. if err := subMw.SetImageBackgroundColor(Pixel(t.Background)); err != nil {
  192. return nil, util.NewError("subMw.SetImageBackgroundColor", err.Error())
  193. }
  194. }
  195. if err := subMw.DrawImage(txtDraw); err != nil {
  196. return nil, util.NewError("subMw.DrawImage", err.Error())
  197. }
  198. parentMw := gmagick.NewMagickWand()
  199. if err := parentMw.ReadImageBlob(transPNG); err != nil {
  200. return nil, util.NewError("parentMw.ReadImageBlob", err.Error())
  201. }
  202. if err := parentMw.ResizeImage(t.ViewSize.Width, t.ViewSize.Height, gmagick.FILTER_LANCZOS, 1); err != nil {
  203. return nil, util.NewError("subMw.ResizeImage", err.Error())
  204. }
  205. if err := parentMw.SetSize(t.ViewSize.Width, t.ViewSize.Height); err != nil {
  206. return nil, util.NewError("subMw.SetSize", err.Error())
  207. }
  208. if err := parentMw.CompositeImage(subMw, gmagick.COMPOSITE_OP_OVER, 0, 0); err != nil {
  209. return nil, util.NewError("parentMw.CompositeImage ", err.Error())
  210. }
  211. pixBackground := Pixel("#ffffffff")
  212. if err := parentMw.RotateImage(pixBackground, float64(t.Angle)); err != nil {
  213. return nil, util.NewError("subMw.RotateImage", err.Error())
  214. }
  215. //由于图片旋转,图片的长宽和坐标位置发生变化,所以需要重置坐标位置
  216. if t.Angle > 0 {
  217. width := parentMw.GetImageWidth()
  218. height := parentMw.GetImageHeight()
  219. y := t.Coordinate.Y - float64(height)/3 + float64(t.ViewSize.Height)/2
  220. x := t.Coordinate.X - float64(width)/2 + float64(t.ViewSize.Width)/2
  221. t.Coordinate.X = x
  222. t.Coordinate.Y = y
  223. t.ViewSize.Width = width
  224. t.ViewSize.Height = height
  225. }
  226. return parentMw, nil
  227. }
  228. func (t *Text) WapText(dw *gmagick.DrawingWand, text string, autoWrap bool) []string {
  229. queryMw := gmagick.NewMagickWand()
  230. metrics := queryMw.QueryFontMetrics(dw, t.Text)
  231. fmt.Println("metrics", metrics)
  232. var lines []string
  233. if uint(metrics.TextWidth) <= t.ViewSize.Width {
  234. lines = append(lines, text)
  235. }
  236. if autoWrap {
  237. txtRune := []rune(text)
  238. var tmpRune []string
  239. for i, v := range txtRune {
  240. tmpRune = append(tmpRune, string(v))
  241. metrics = queryMw.QueryFontMetrics(dw, strings.Join(tmpRune, ""))
  242. if uint(metrics.TextWidth) > t.ViewSize.Width {
  243. fmt.Println("tmpRune", tmpRune)
  244. lines = append(lines, strings.Join(tmpRune[0:i-1], ""))
  245. tmpRune = []string{}
  246. }
  247. }
  248. if len(tmpRune) > 0 {
  249. lines = append(lines, strings.Join(tmpRune, ""))
  250. }
  251. }
  252. return lines
  253. }
  254. func (t *Text) Clean() {
  255. t.SetColor("#ffffff00")
  256. t.SetBackground("#ffffffff")
  257. t.SetSize(0, 0)
  258. t.SetPoint(0, 0)
  259. t.SetAlign("left")
  260. t.SetBius("")
  261. t.SetAngle(0)
  262. }