tools.js 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. export default {
  2. async checkImgHttp(imgPath, type) {
  3. let res = await this.getImageInfo_PromiseFc(imgPath)
  4. let newPath = '';
  5. if (!res) {
  6. uni.hideLoading()
  7. switch (type) {
  8. case 'avatar':
  9. console.log('%cerr:海报头像图片错误: ' + imgPath, 'color:green;background:yellow');
  10. break;
  11. case 'bgImage':
  12. console.log('%cerr:海报背景图片错误: ' + imgPath, 'color:green;background:yellow');
  13. break;
  14. case 'wxCode':
  15. console.log('%cerr:海报微信二维码图片错误: ' + imgPath, 'color:green;background:yellow');
  16. break;
  17. case 'goodsImage':
  18. console.log('%cerr:海报商品图片错误: ' + imgPath, 'color:green;background:yellow');
  19. break;
  20. default:
  21. break;
  22. }
  23. } else {
  24. let pathArr = imgPath.split('://');
  25. // #ifdef H5
  26. let ishttps = 'https:' == window.location.protocol ? true : false;
  27. ishttps ? (pathArr[0] = 'https') : (pathArr[0] = 'http');
  28. // #endif
  29. // #ifdef MP-WEIXIN
  30. pathArr[0] = 'https'
  31. // #endif
  32. newPath = pathArr.join('://');
  33. }
  34. return newPath;
  35. },
  36. // 检测图片是否可用
  37. getImageInfo_PromiseFc(imgPath) {
  38. return new Promise((rs, rj) => {
  39. imgPath = this.checkMPUrl(imgPath);
  40. uni.getImageInfo({
  41. src: imgPath,
  42. success: res => {
  43. rs(1);
  44. },
  45. fail: err => {
  46. console.log(err)
  47. rs(0);
  48. }
  49. })
  50. });
  51. },
  52. // 微信头像
  53. checkMPUrl(url) {
  54. // #ifdef MP
  55. if (
  56. url.substring(0, 4) === 'http' &&
  57. url.substring(0, 5) !== 'https' &&
  58. url.substring(0, 12) !== 'http://store' &&
  59. url.substring(0, 10) !== 'http://tmp' &&
  60. url.substring(0, 10) !== 'http://usr'
  61. ) {
  62. url = 'https' + url.substring(4, url.length);
  63. }
  64. // #endif
  65. return url;
  66. },
  67. /**
  68. * 相对比例
  69. * @param {Object} bgObj - 背景图片数据对象
  70. * @param {Number} num - 需要计算的绘制模块数值
  71. */
  72. getScale(bgObj, num = 0) {
  73. return Number(bgObj.width * (num / bgObj.width).toFixed(2))
  74. },
  75. /**
  76. * 绘制序列
  77. * @param {Object} bgObj - 背景图片数据对象
  78. * @param {Array} drawArr - 绘制元素数组对象
  79. */
  80. initDrawArray(bgObj, drawArr) {
  81. const that = this;
  82. let arr = []
  83. drawArr.forEach(item => {
  84. switch (item.type) {
  85. case 'text':
  86. arr.push({
  87. type: 'text',
  88. text: item.text, //文本
  89. size: that.getScale(bgObj, item.size) || 50, //大小
  90. color: item.color || 'black', //颜色
  91. alpha: item.alpha || 1, //透明度
  92. textAlign: item.textAlign || 'left', //文字x对齐方式: 'left'、'middle'、'right'
  93. textBaseline: item.textBaseline ||
  94. 'middle', //文字y对齐方式: 'top'、'bottom'、'middle'、'normal'
  95. dx: that.getScale(bgObj, item.dx) || 0, //文字x轴位置
  96. dy: that.getScale(bgObj, item.dy + item.size) || 0, //文字y轴位置
  97. [item.lineFeed ? 'lineFeed' : '']: { //设置换行
  98. maxWidth: item.lineFeed?.maxWidth && that.getScale(bgObj, item.lineFeed
  99. .maxWidth) || bgObj
  100. .width, //最大宽度
  101. lineHeight: item.lineFeed?.lineHeight && that.getScale(bgObj, item
  102. .lineFeed.lineHeight) || 50, //行高
  103. lineNum: item.lineFeed?.lineNum || -1, // 最多行数,小于0为无限
  104. dx: item.lineFeed?.dx || -1, //非第一行文字位置,小于0为默认位置
  105. },
  106. infoCallBack: (textLength) => { //回调函数,返回文本信息
  107. if (item.isBgCenter) {
  108. return {
  109. dx: (bgObj.width - textLength) / 2,
  110. }
  111. }
  112. return {}
  113. },
  114. [item.lineThrough ? 'lineThrough' : '']: { // 设置删除线,默认为字体样式
  115. width: item.lineThrough?.width || item.size / 10,
  116. style: item.lineThrough?.style || item.color,
  117. alpha: item.lineThrough?.alpha || 1,
  118. cap: item.lineThrough?.cap || 'butt',
  119. },
  120. fontStyle: item.fontStyle || 'normal', // 设置字体,跟随系统默认
  121. fontVariant: item.fontVariant || 'normal',
  122. fontWeight: item.fontWeight || 'normal',
  123. fontFamily: item.fontFamily || 'sans-serif',
  124. })
  125. break;
  126. case 'qrcode':
  127. arr.push({
  128. type: 'qrcode',
  129. text: String(item.text || '') || '', // 生成内容
  130. size: Number(that.getScale(bgObj, item.size) || 0) || 200, // 二维码大小
  131. background: String(item.background || '') || '#ffffff', // 背景色
  132. foreground: String(item.foreground || '') || '#000000', // 前景色
  133. correctLevel: Number(item.correctLevel || 0) || 3, // 容错级别
  134. image: String(item.image || '') || '', // 二维码图标
  135. imageSize: Number(that.getScale(bgObj, item.imageSize) || 0) || 40, // 二维码图标大小
  136. dx: item.isBgCenter ? (bgObj.width - item.size) / 2 : Number(that.getScale(
  137. bgObj, item.dx) || 0) || 0,
  138. dy: Number(that.getScale(bgObj, item.dy) || 0) || 0, // y轴距离
  139. })
  140. break;
  141. case 'image':
  142. arr.push({
  143. type: 'image',
  144. url: this.checkImgHttp(item.url, item.name), // 网络图片路径
  145. dWidth: Number(that.getScale(bgObj, item.dWidth) || 0) || 100, //绘制图像的宽度,允许缩放
  146. dHeight: Number(that.getScale(bgObj, item.dHeight) || 0) || 100, //绘制图像的高度,允许缩放
  147. sWidth: Number(that.getScale(bgObj, item.sWidth) || 0) || 100, //绘制图像的宽度,允许缩放
  148. sHeight: Number(that.getScale(bgObj, item.sHeight) || 0) || 100, //绘制图像的高度,允许缩放
  149. dx: Number(that.getScale(bgObj, item.dx) || 0) || 0, // x轴距离
  150. dy: Number(that.getScale(bgObj, item.dy) || 0) || 0, // y轴距离
  151. sx: Number(that.getScale(bgObj, item.sx) || 0) || 0,
  152. sy: Number(that.getScale(bgObj, item.sy) || 0) || 0,
  153. [item.circleSet ? 'circleSet' : '']: { //圆形设置
  154. r: Number(item.circleSet?.r && that.getScale(bgObj, item.circleSet
  155. .r) || 0),
  156. x: Number(item.circleSet?.x && that.getScale(bgObj, item.circleSet
  157. .x) || 0),
  158. y: Number(item.circleSet?.y && that.getScale(bgObj, item.circleSet
  159. .y) || 0),
  160. },
  161. [item.roundRectSet ? 'roundRectSet' : '']: { //圆角设置
  162. r: Number(item.roundRectSet?.r && that.getScale(bgObj, item
  163. .roundRectSet.r) || 0),
  164. },
  165. infoCallBack: (imgInfo) => { //回调函数,返回图片信息
  166. if (item.isBgCenter) {
  167. return {
  168. dx: (bgObj.width - item.dWidth) / 2,
  169. }
  170. }
  171. },
  172. })
  173. break;
  174. default:
  175. _app.log('暂无次类型');
  176. break;
  177. }
  178. })
  179. return arr
  180. }
  181. }