canvas.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  1. import { isEmpty, isString, cloneDeep, isObject } from "cl-uni/utils";
  2. // 借鉴于作者 magic-zhu
  3. class ClCanvas {
  4. constructor(canvasId, scope) {
  5. // 绘图上下文
  6. this.ctx = null;
  7. // canvas id
  8. this.canvasId = canvasId;
  9. // 当前页面作用域
  10. this.scope = scope;
  11. // 渲染队列
  12. this.renderQuene = [];
  13. // 图片队列
  14. this.imageQueue = [];
  15. // 创建画布
  16. this.create();
  17. }
  18. // 创建画布
  19. create() {
  20. this.ctx = uni.createCanvasContext(this.canvasId, this.scope);
  21. return this;
  22. }
  23. // 块
  24. div(options) {
  25. let render = () => {
  26. this.divRender(options);
  27. };
  28. this.renderQuene.push(render);
  29. return this;
  30. }
  31. // 文本
  32. text(options) {
  33. let render = () => {
  34. this.textRender(options);
  35. };
  36. this.renderQuene.push(render);
  37. return this;
  38. }
  39. // 图片
  40. image(options) {
  41. let render = () => {
  42. this.imageRender(options);
  43. };
  44. this.imageQueue.push(options);
  45. this.renderQuene.push(render);
  46. return this;
  47. }
  48. // 绘画
  49. draw(save = false) {
  50. return new Promise((resolve) => {
  51. let next = () => {
  52. this.render();
  53. this.ctx.draw(save, () => {
  54. resolve();
  55. });
  56. };
  57. if (!isEmpty(this.imageQueue)) {
  58. this.preLoadImage().then(next);
  59. } else {
  60. next();
  61. }
  62. });
  63. }
  64. // 生成图片
  65. createImage(options) {
  66. return new Promise((resolve) => {
  67. let data = {
  68. canvasId: this.canvasId,
  69. ...options,
  70. success: (res) => {
  71. // #ifdef MP-ALIPAY
  72. resolve(res.apFilePath);
  73. // #endif
  74. // #ifndef MP-ALIPAY
  75. resolve(res.tempFilePath);
  76. // #endif
  77. },
  78. fail: (err) => {
  79. reject(err);
  80. },
  81. };
  82. // #ifdef MP-ALIPAY
  83. this.ctx.toTempFilePath(data);
  84. // #endif
  85. // #ifndef MP-ALIPAY
  86. uni.canvasToTempFilePath(data, this.scope);
  87. // #endif
  88. });
  89. }
  90. // 保存图片
  91. saveImage(options) {
  92. uni.showLoading({
  93. title: "图片下载中...",
  94. });
  95. this.createImage(options).then((path) => {
  96. return new Promise((resolve) => {
  97. uni.hideLoading();
  98. uni.saveImageToPhotosAlbum({
  99. filePath: path,
  100. success: () => {
  101. uni.showToast({
  102. title: "保存图片成功",
  103. });
  104. resolve();
  105. },
  106. fail: (err) => {
  107. // #ifdef MP-ALIPAY
  108. uni.showToast({
  109. title: "保存图片成功",
  110. });
  111. // #endif
  112. // #ifndef MP-ALIPAY
  113. uni.showToast({
  114. title: "保存图片失败",
  115. icon: "none",
  116. });
  117. // #endif
  118. },
  119. });
  120. });
  121. });
  122. }
  123. // 预览图片
  124. previewImage(options) {
  125. this.createImage(options).then((url) => {
  126. uni.previewImage({
  127. urls: [url],
  128. });
  129. });
  130. }
  131. // 下载图片
  132. downLoadImage(item) {
  133. return new Promise((resolve, reject) => {
  134. if (!item.url) {
  135. return reject("url 不能为空");
  136. }
  137. // 处理base64
  138. // #ifdef MP
  139. if (item.url.indexOf("data:image") >= 0) {
  140. let extName = item.url.match(/data\:\S+\/(\S+);/);
  141. if (extName) {
  142. extName = extName[1];
  143. }
  144. const fs = wx.getFileSystemManager();
  145. const fileName = Date.now() + "." + extName;
  146. const filePath = wx.env.USER_DATA_PATH + "/" + fileName;
  147. return fs.writeFile({
  148. filePath,
  149. data: item.url.replace(/^data:\S+\/\S+;base64,/, ""),
  150. encoding: "base64",
  151. success: () => {
  152. item.url = filePath;
  153. resolve(filePath);
  154. },
  155. });
  156. }
  157. // #endif
  158. // 是否网络图片
  159. const isHttp = item.url.includes("http");
  160. uni.getImageInfo({
  161. src: item.url,
  162. success: (result) => {
  163. item.sheight = result.height;
  164. item.swidth = result.width;
  165. if (isHttp) {
  166. item.url = result.path;
  167. }
  168. resolve(result.path);
  169. },
  170. fail: (err) => {
  171. console.log(err, item.url);
  172. reject(err);
  173. },
  174. });
  175. });
  176. }
  177. // 预加载图片
  178. async preLoadImage() {
  179. await Promise.all(this.imageQueue.map(this.downLoadImage));
  180. }
  181. // 设置背景颜色
  182. setBackground(options) {
  183. if (!options) return null;
  184. let backgroundColor;
  185. if (!isString(options)) {
  186. backgroundColor = options;
  187. }
  188. if (isString(options.backgroundColor)) {
  189. backgroundColor = options.backgroundColor;
  190. }
  191. if (isObject(options.backgroundColor)) {
  192. let { startX, startY, endX, endY, gradient } = options.backgroundColor;
  193. const rgb = this.ctx.createLinearGradient(startX, startY, endX, endY);
  194. for (let i = 0, l = gradient.length; i < l; i++) {
  195. rgb.addColorStop(gradient[i].step, gradient[i].color);
  196. }
  197. backgroundColor = rgb;
  198. }
  199. this.ctx.setFillStyle(backgroundColor);
  200. return this;
  201. }
  202. // 设置边框
  203. setBorder(options) {
  204. if (!options.border) return this;
  205. let { x, y, width: w, height: h, border, radius: r } = options;
  206. if (border.width) {
  207. this.ctx.setLineWidth(border.width);
  208. }
  209. if (border.color) {
  210. this.ctx.setStrokeStyle(border.color);
  211. }
  212. // 偏移距离
  213. let p = border.width / 2;
  214. // 是否有圆角
  215. if (r) {
  216. this.drawRadiusRoute(x - p, y - p, w + 2 * p, h + 2 * p, r + p);
  217. this.ctx.stroke();
  218. } else {
  219. this.ctx.strokeRect(x - p, y - p, w + 2 * p, h + 2 * p);
  220. }
  221. return this;
  222. }
  223. // 设置缩放,旋转
  224. setTransform(options) {
  225. if (options.scale) {
  226. }
  227. if (options.rotate) {
  228. }
  229. }
  230. // 带有圆角的路径绘制
  231. drawRadiusRoute(x, y, w, h, r) {
  232. this.ctx.beginPath();
  233. this.ctx.moveTo(x + r, y, y);
  234. this.ctx.lineTo(x + w - r, y);
  235. this.ctx.arc(x + w - r, y + r, r, 1.5 * Math.PI, 0);
  236. this.ctx.lineTo(x + w, y + h - r);
  237. this.ctx.arc(x + w - r, y + h - r, r, 0, 0.5 * Math.PI);
  238. this.ctx.lineTo(x + r, y + h);
  239. this.ctx.arc(x + r, y + h - r, r, 0.5 * Math.PI, Math.PI);
  240. this.ctx.lineTo(x, y + r);
  241. this.ctx.arc(x + r, y + r, r, Math.PI, 1.5 * Math.PI);
  242. this.ctx.closePath();
  243. }
  244. // 裁剪图片
  245. cropImage(mode, width, height, sWidth, sHeight, x, y) {
  246. let cx, cy, cw, ch, sx, sy, sw, sh;
  247. switch (mode) {
  248. case "aspectFill":
  249. if (width <= height) {
  250. let p = width / sWidth;
  251. cw = width;
  252. ch = sHeight * p;
  253. cx = 0;
  254. cy = (height - ch) / 2;
  255. } else {
  256. let p = height / sHeight;
  257. cw = sWidth * p;
  258. ch = height;
  259. cx = (width - cw) / 2;
  260. cy = 0;
  261. }
  262. break;
  263. case "aspectFit":
  264. if (width <= height) {
  265. let p = height / sHeight;
  266. sw = width / p;
  267. sh = sHeight;
  268. sx = x + (sWidth - sw) / 2;
  269. sy = y;
  270. } else {
  271. let p = width / sWidth;
  272. sw = sWidth;
  273. sh = height / p;
  274. sx = x;
  275. sy = y + (sHeight - sh) / 2;
  276. }
  277. break;
  278. }
  279. return { cx, cy, cw, ch, sx, sy, sw, sh };
  280. }
  281. // 获取文本内容
  282. getTextRows({ text, fontSize = 14, width = 100, lineClamp = 1, overflow, letterSpace = 0 }) {
  283. let arr = [[]];
  284. let a = 0;
  285. for (let i = 0; i < text.length; i++) {
  286. let b = this.getFontPx(text[i], { fontSize, letterSpace });
  287. if (a + b > width) {
  288. a = b;
  289. arr.push(text[i]);
  290. } else {
  291. // 最后一行且设置超出省略号
  292. if (
  293. overflow == "ellipsis" &&
  294. arr.length == lineClamp &&
  295. a + 3 * this.getFontPx(".", { fontSize, letterSpace }) > width - 5
  296. ) {
  297. arr[arr.length - 1] += "...";
  298. break;
  299. } else {
  300. a += b;
  301. arr[arr.length - 1] += text[i];
  302. }
  303. }
  304. }
  305. return arr;
  306. }
  307. // 获取单个字体像素大小
  308. getFontPx(text, { fontSize = 14, letterSpace }) {
  309. if (!text) {
  310. return fontSize / 2 + fontSize / 14 + letterSpace;
  311. }
  312. let ch = text.charCodeAt();
  313. if ((ch >= 0x0001 && ch <= 0x007e) || (0xff60 <= ch && ch <= 0xff9f)) {
  314. return fontSize / 2 + fontSize / 14 + letterSpace;
  315. } else {
  316. return fontSize + letterSpace;
  317. }
  318. }
  319. // 渲染块
  320. divRender(options) {
  321. this.ctx.save();
  322. this.setBackground(options);
  323. this.setBorder(options);
  324. this.setTransform(options);
  325. // 区分是否有圆角采用不同模式渲染
  326. if (options.radius) {
  327. let { x, y } = options;
  328. let w = options.width;
  329. let h = options.height;
  330. let r = options.radius;
  331. // 画路径
  332. this.drawRadiusRoute(x, y, w, h, r);
  333. // 填充
  334. this.ctx.fill();
  335. } else {
  336. this.ctx.fillRect(options.x, options.y, options.width, options.height);
  337. }
  338. this.ctx.restore();
  339. }
  340. // 渲染文本
  341. textRender(options) {
  342. let {
  343. fontSize = 14,
  344. align,
  345. width,
  346. color = "#000000",
  347. x,
  348. y,
  349. letterSpace,
  350. lineHeight = 14,
  351. } = options || {};
  352. this.ctx.save();
  353. // 设置字体大小
  354. this.ctx.setFontSize(fontSize);
  355. // 设置字体颜色
  356. this.ctx.setFillStyle(color);
  357. // 获取文本内容
  358. let rows = this.getTextRows(options);
  359. // 获取文本行高
  360. let lh = lineHeight - fontSize;
  361. // 左偏移
  362. let offsetLeft = 0;
  363. // 字体对齐
  364. if (align && width) {
  365. this.ctx.textAlign = align;
  366. offsetLeft = width / 2;
  367. }
  368. // 逐行写入
  369. for (let i = 0; i < rows.length; i++) {
  370. let d = offsetLeft;
  371. if (letterSpace) {
  372. for (let j = 0; j < rows[i].length; j++) {
  373. // 写入文字
  374. this.ctx.fillText(rows[i][j], x + d, (i + 1) * fontSize + y + lh * i);
  375. // 设置偏移
  376. d += this.getFontPx(rows[i][j], options);
  377. }
  378. } else {
  379. // 写入文字
  380. this.ctx.fillText(rows[i], x + offsetLeft, (i + 1) * fontSize + y + lh * i);
  381. }
  382. }
  383. this.ctx.restore();
  384. }
  385. // 渲染图片
  386. imageRender(options) {
  387. this.ctx.save();
  388. if (options.radius) {
  389. // 画路径
  390. this.drawRadiusRoute(
  391. options.x,
  392. options.y,
  393. options.width || options.swidth,
  394. options.height || options.sHeight,
  395. options.radius
  396. );
  397. // 填充
  398. this.ctx.fill();
  399. // 裁剪
  400. this.ctx.clip();
  401. }
  402. let temp = cloneDeep(this.imageQueue[0]);
  403. if (options.mode) {
  404. let { cx, cy, cw, ch, sx, sy, sw, sh } = this.cropImage(
  405. options.mode,
  406. temp.swidth,
  407. temp.sheight,
  408. temp.width,
  409. temp.height,
  410. temp.x,
  411. temp.y
  412. );
  413. switch (options.mode) {
  414. case "aspectFit":
  415. this.ctx.drawImage(temp.url, sx, sy, sw, sh);
  416. break;
  417. case "aspectFill":
  418. this.ctx.drawImage(
  419. temp.url,
  420. cx,
  421. cy,
  422. cw,
  423. ch,
  424. temp.x,
  425. temp.y,
  426. temp.width,
  427. temp.height
  428. );
  429. break;
  430. }
  431. } else {
  432. this.ctx.drawImage(
  433. temp.url,
  434. temp.x,
  435. temp.y,
  436. temp.width || temp.swidth,
  437. temp.height || temp.sheight
  438. );
  439. }
  440. this.imageQueue.shift();
  441. this.ctx.restore();
  442. }
  443. // 渲染全部
  444. render() {
  445. this.renderQuene.forEach((ele) => {
  446. ele();
  447. });
  448. }
  449. }
  450. export default ClCanvas;