canvas.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. export default {
  2. circleImg(ctx, img, x, y, w, h, r, state = true) {
  3. state && ctx.save()
  4. ctx.fillStyle = 'transparent'
  5. if (w < 2 * r) r = w / 2
  6. if (h < 2 * r) r = h / 2
  7. ctx.beginPath()
  8. ctx.moveTo(x + r, y)
  9. // 右上角
  10. ctx.arcTo(x + w, y, x + w, y + h, r)
  11. ctx.arcTo(x + w, y + h, x, y + h, r)
  12. ctx.arcTo(x, y + h, x, y, r)
  13. ctx.arcTo(x, y, x + w, y, r)
  14. ctx.closePath()
  15. ctx.strokeStyle = 'transparent'
  16. ctx.stroke()
  17. ctx.clip()
  18. if (img) {
  19. ctx.drawImage(img, x, y, w, h)
  20. }
  21. state && ctx.restore()
  22. },
  23. drawOneText(ctx, text, fontSize, color, canvasWidth, top) {
  24. ctx.font = fontSize
  25. ctx.fillStyle = color
  26. let strWidth = ctx.measureText(text).width
  27. ctx.fillText(text, (canvasWidth - strWidth) / 2, top)
  28. },
  29. /**
  30. * 绘制多行文本
  31. * @param str 文本内容
  32. * @param initHeight 文本绘制的初始高度
  33. * @param titleHeight 绘制文本的高度
  34. */
  35. drawText(ctx, str, font, color, top, lineHeight, canvasWidth, textWidth) {
  36. ctx.font = font
  37. ctx.fillStyle = color
  38. var lineWidth = 0
  39. var lastSubStrIndex = 0 //每次开始截取的字符串的索引
  40. for (let i = 0; i < str.length; i++) {
  41. lineWidth += ctx.measureText(str[i]).width
  42. if (lineWidth > textWidth) {
  43. ctx.fillText(
  44. str.substring(lastSubStrIndex, i),
  45. (canvasWidth - textWidth) / 2 + 5,
  46. top
  47. ) //绘制截取部分
  48. top += lineHeight
  49. lineWidth = 0
  50. lastSubStrIndex = i
  51. }
  52. if (i == str.length - 1) {
  53. //绘制剩余部分
  54. ctx.fillText(
  55. str.substring(lastSubStrIndex, i + 1),
  56. (canvasWidth - lineWidth) / 2,
  57. top
  58. )
  59. }
  60. }
  61. top = top + lineHeight
  62. return top
  63. }
  64. }