qs-canvas.js 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. import {
  2. __commonJS,
  3. __privateAdd,
  4. __privateGet,
  5. __privateSet
  6. } from "./chunk-UQGIA5KH.js";
  7. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/qs-canvas/index.js
  8. var require_qs_canvas = __commonJS({
  9. "../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/qs-canvas/index.js"(exports, module) {
  10. var QSCanvas = function() {
  11. var _nc;
  12. const platform = getPlatform(), isUni = platform == "uni", isNode = platform == "node", isWeb = platform == "web", imgCache = {}, vmCache = {}, asyncDrawWhiteList = Object.freeze([
  13. "init",
  14. "initAsyncDrawMode",
  15. "initArgs",
  16. "initCanvas",
  17. "handleCtx",
  18. "initData",
  19. "draw",
  20. "toImage",
  21. "updateCanvasWH",
  22. "clear",
  23. "restoreAsyncDrawMode"
  24. ]), calcMethods = Object.freeze([
  25. "setPaintbrush",
  26. "setPaintbrushProp",
  27. "resetPaintbrush",
  28. "savePaintbrush",
  29. "restorePaintbrush",
  30. "calcText",
  31. "calcImg",
  32. "measureText",
  33. "loadImage"
  34. ]), asyncDrawMethods = Object.freeze([
  35. "setPaintbrush",
  36. "setPaintbrushProp",
  37. "resetPaintbrush",
  38. "savePaintbrush",
  39. "restorePaintbrush",
  40. "drawText",
  41. "drawStraightLine",
  42. "drawDoubleStraightLine",
  43. "drawDotted",
  44. "drawDottedStraightLine",
  45. "drawLine",
  46. "drawTextDecoration",
  47. "drawImg",
  48. "drawQrCode",
  49. "setCircle",
  50. "setRect"
  51. ]), allSelfMethods = Object.freeze([
  52. "setPaintbrush",
  53. "setPaintbrushProp",
  54. "resetPaintbrush",
  55. "savePaintbrush",
  56. "restorePaintbrush",
  57. "drawText",
  58. "drawStraightLine",
  59. "drawDoubleStraightLine",
  60. "drawDotted",
  61. "drawDottedStraightLine",
  62. "drawLine",
  63. "drawTextDecoration",
  64. "drawImg",
  65. "drawQrCode",
  66. "setCircle",
  67. "setRect",
  68. "calcText",
  69. "calcImg",
  70. "measureText",
  71. "loadImage",
  72. "drawArray",
  73. "drawItem"
  74. ]), needReturnMethods = Object.freeze(["drawText", "drawImg"]), commonMethods = Object.freeze([
  75. "drawImage",
  76. "putImageData",
  77. "getImageData",
  78. "createImageData",
  79. "addPage",
  80. "save",
  81. "restore",
  82. "rotate",
  83. "translate",
  84. "transform",
  85. "getTransform",
  86. "resetTransform",
  87. "setTransform",
  88. "isPointInPath",
  89. "scale",
  90. "clip",
  91. "fill",
  92. "stroke",
  93. "fillText",
  94. "strokeText",
  95. "fillRect",
  96. "strokeRect",
  97. "clearRect",
  98. "rect",
  99. "measureText",
  100. "moveTo",
  101. "lineTo",
  102. "bezierCurveTo",
  103. "quadraticCurveTo",
  104. "beginPath",
  105. "closePath",
  106. "arc",
  107. "arcTo",
  108. "ellipse",
  109. "setLineDash",
  110. "getLineDash",
  111. "createPattern",
  112. "createLinearGradient",
  113. "createRadialGradient"
  114. ]);
  115. let nodeCanvas, id = 1;
  116. function notUnd(t) {
  117. return String(t) != "undefined";
  118. }
  119. function isNull(a) {
  120. return !((a || a == 0) && !["undefined", "null"].includes(String(a)));
  121. }
  122. function getPlatform() {
  123. if (notUnd(typeof uni))
  124. return "uni";
  125. if (notUnd(typeof window) && notUnd(typeof document))
  126. return "web";
  127. return "node";
  128. }
  129. function getCtx(vm, args) {
  130. if (isUni) {
  131. if (!args.canvasId) {
  132. throw new Error("canvasId 不能为空");
  133. }
  134. }
  135. let canvas, obj = {};
  136. switch (platform) {
  137. case "uni":
  138. canvas = uni.createCanvasContext(args.canvasId, vm);
  139. obj.canvas = canvas;
  140. obj.ctx = canvas;
  141. break;
  142. case "web":
  143. canvas = (args == null ? void 0 : args.canvasId) ? document.getElementById(args == null ? void 0 : args.canvasId) : document.createElement("canvas");
  144. canvas.width = (args == null ? void 0 : args.width) || 10;
  145. canvas.height = (args == null ? void 0 : args.height) || 10;
  146. obj.canvas = canvas;
  147. obj.ctx = canvas.getContext("2d");
  148. break;
  149. case "node":
  150. canvas = nodeCanvas.createCanvas((args == null ? void 0 : args.width) || 10, (args == null ? void 0 : args.height) || 10);
  151. obj.canvas = canvas;
  152. obj.ctx = canvas.getContext("2d");
  153. break;
  154. }
  155. return obj;
  156. }
  157. const _QSCanvas = class _QSCanvas {
  158. constructor(obj, vm) {
  159. __privateAdd(this, _nc, void 0);
  160. this._id = id++;
  161. vmCache[this._id] = vm;
  162. if (obj) {
  163. this.init(obj);
  164. }
  165. }
  166. init(obj = {}) {
  167. this.initArgs(obj).initData().initCanvas().handleCtx().resetPaintbrush();
  168. if (this._data.asyncDrawMode === true) {
  169. __privateSet(this, _nc, new _QSCanvas({ asyncDrawMode: false }));
  170. this.initAsyncDrawMode();
  171. }
  172. }
  173. initAsyncDrawMode() {
  174. if (isUni)
  175. return;
  176. const ctxMethods = this._data.ctxMethods;
  177. const arr = [.../* @__PURE__ */ new Set([...allSelfMethods, ...ctxMethods])];
  178. for (let i = 0; i < arr.length; i++) {
  179. const item = arr[i];
  180. this.handleAsyncDrawModeItem(item);
  181. }
  182. }
  183. handleAsyncDrawModeItem(i) {
  184. if (isUni)
  185. return;
  186. if (asyncDrawWhiteList.includes(i)) {
  187. console.log("白名单跳过");
  188. return;
  189. }
  190. if (typeof this[i] == "function") {
  191. if (!this._data.nMethods[i])
  192. this._data.nMethods[i] = this[i];
  193. let _this = this;
  194. this[i] = function() {
  195. let r;
  196. if (calcMethods.includes(i)) {
  197. r = __privateGet(_this, _nc)[i](...arguments);
  198. }
  199. if (r && r !== _this && r !== __privateGet(_this, _nc))
  200. return r;
  201. if (asyncDrawMethods.includes(i) || _this._data.ctxMethods.includes(i)) {
  202. _this._data.asyncDrawQueue.push({ method: i, args: arguments });
  203. }
  204. if (needReturnMethods.includes(i)) {
  205. return __privateGet(_this, _nc)[i](...arguments);
  206. }
  207. };
  208. }
  209. }
  210. restoreAsyncDrawMode() {
  211. if (isUni)
  212. return;
  213. const nMethods = this._data.nMethods;
  214. for (const i in nMethods) {
  215. this[i] = nMethods[i];
  216. }
  217. }
  218. initArgs(obj = {}) {
  219. this._args = obj;
  220. return this;
  221. }
  222. initCanvas() {
  223. const canvasObj = getCtx(vmCache[this._id], this._args);
  224. this.canvas = canvasObj.canvas;
  225. this.ctx = canvasObj.ctx;
  226. return this;
  227. }
  228. /**
  229. * 使QSCanvas拥有原有方法
  230. */
  231. handleCtx() {
  232. const ctx = this.ctx;
  233. const active = (i) => {
  234. this._data.ctxMethods.push(i);
  235. this[i] = ctx[i].bind(ctx);
  236. return;
  237. function a() {
  238. return ctx[i](...arguments);
  239. }
  240. };
  241. for (const i in ctx) {
  242. if (typeof ctx[i] == "function") {
  243. if (!this[i]) {
  244. active(i);
  245. }
  246. }
  247. }
  248. for (let k = 0; k < commonMethods.length; k++) {
  249. const i = commonMethods[k];
  250. if (typeof ctx[i] == "function") {
  251. if (!this[i]) {
  252. active(i);
  253. }
  254. }
  255. }
  256. return this;
  257. }
  258. initData() {
  259. this._data = {
  260. oldPaintbrushProps: {},
  261. savedPaintbrushProps: [],
  262. font: { fontStyle: "normal", fontVariant: "normal", fontWeight: "normal", fontSize: 10, fontFamily: "sans-serif" },
  263. height: this._args.height || 10,
  264. width: this._args.width || 10,
  265. whChange: false,
  266. asyncDrawQueue: [],
  267. nMethods: {},
  268. asyncDrawMode: isNode || isWeb ? this._args.asyncDrawMode !== false : false,
  269. ctxMethods: []
  270. };
  271. return this;
  272. }
  273. /**
  274. * 设置画笔
  275. */
  276. setPaintbrush(obj = {}) {
  277. filterPaintbrushProps(obj);
  278. for (const k in obj) {
  279. this.setPaintbrushProp(k, obj[k]);
  280. }
  281. return this;
  282. }
  283. /**
  284. * 设置画笔操作兼容uni
  285. */
  286. setPaintbrushProp(prop, data) {
  287. if (isNull(prop) || isNull(data))
  288. return;
  289. prop = hyphen2Hump(prop);
  290. const ctx = this.ctx;
  291. if (prop == "font") {
  292. if (data) {
  293. if (typeof data != "object") {
  294. console.warn("font属性需Object格式");
  295. return;
  296. }
  297. for (const k in data)
  298. if (isNull(data[k]))
  299. delete data[k];
  300. const font = { ...this._data.font, ...data };
  301. if (isUni)
  302. font.fontSize = Math.round(font.fontSize);
  303. this._data.font = font;
  304. const f = this._data.font;
  305. this._data.oldPaintbrushProps[prop] = f;
  306. const setFont = () => {
  307. ctx.font = `${f.fontStyle || "normal"} ${f.fontVariant || "normal"} ${f.fontWeight || "normal"} ${f.fontSize ?? 10}px ${f.fontFamily || "sans-serif"}`;
  308. };
  309. if (isUni) {
  310. setFont();
  311. } else
  312. setFont();
  313. }
  314. } else {
  315. this._data.oldPaintbrushProps[prop] = data;
  316. const fnn = "set" + prop[0].toUpperCase() + prop.slice(1);
  317. if (typeof (ctx == null ? void 0 : ctx[fnn]) == "function") {
  318. ctx[fnn](data);
  319. } else {
  320. ctx[prop] = data;
  321. }
  322. }
  323. return this;
  324. }
  325. /**
  326. * 重置画笔
  327. */
  328. resetPaintbrush(obj = {}) {
  329. this.setPaintbrush({
  330. fillStyle: "#000000",
  331. strokeStyle: "#000000",
  332. shadowColor: "#000000",
  333. shadowBlur: 0,
  334. shadowOffsetX: 0,
  335. shadowOffsetY: 0,
  336. lineCap: "butt",
  337. lineJoin: "miter",
  338. lineWidth: 1,
  339. miterLimit: 10,
  340. font: this._data.font,
  341. textAlign: "start",
  342. textBaseline: "top",
  343. globalAlpha: 1,
  344. globalCompositeOperation: "source-over",
  345. ...obj
  346. });
  347. return this;
  348. }
  349. saveAndSetPaintbrush(paintbrushProps = {}) {
  350. this.savePaintbrush();
  351. this.setPaintbrush(paintbrushProps);
  352. return this;
  353. }
  354. /**
  355. * 保存画笔设置
  356. */
  357. savePaintbrush() {
  358. this._data.savedPaintbrushProps.unshift({ ...this._data.oldPaintbrushProps });
  359. return this;
  360. }
  361. /**
  362. * 恢复上次保存的画笔设置
  363. */
  364. restorePaintbrush() {
  365. const savedProps = this._data.savedPaintbrushProps.shift();
  366. if (savedProps)
  367. this._data.oldPaintbrushProps = { ...this._data.oldPaintbrushProps, ...savedProps };
  368. this.resetPaintbrush({ ...this._data.oldPaintbrushProps });
  369. return this;
  370. }
  371. /**
  372. * 更新画布宽高
  373. */
  374. updateCanvasWH(obj = {}) {
  375. var _a, _b, _c;
  376. let { width, height, delay } = obj, setCanvasWH = (_a = this._args) == null ? void 0 : _a.setCanvasWH;
  377. width = width || ((_b = this._data) == null ? void 0 : _b.width) || 10;
  378. height = height || ((_c = this._data) == null ? void 0 : _c.height) || 10;
  379. return new Promise((rs, rj) => {
  380. if (isUni) {
  381. if (!setCanvasWH || typeof setCanvasWH != "function") {
  382. rj("setCanvasWH异常, uni-app 请在初始化时传入setCanvasWH函数");
  383. return;
  384. }
  385. setCanvasWH({ height, width });
  386. setTimeout(() => {
  387. rs();
  388. }, delay ?? 50);
  389. } else {
  390. this.canvas.height = height;
  391. this.canvas.width = width;
  392. rs();
  393. }
  394. }).then((r) => {
  395. if (this._data.width != width || this._data.height != height) {
  396. this._data.whChange = true;
  397. }
  398. this._data.width = width;
  399. this._data.height = height;
  400. if (!this._data.asyncDrawMode)
  401. this.resetPaintbrush(this._data.oldPaintbrushProps);
  402. });
  403. }
  404. /**
  405. * 清除画布内容
  406. */
  407. clear() {
  408. this.ctx.clearRect(0, 0, this._data.width || 999999, this._data.height || 999999);
  409. return this;
  410. }
  411. /**
  412. * 兼容uni draw
  413. */
  414. draw(obj = {}) {
  415. const { reserve } = obj;
  416. return new Promise((rs, rj) => {
  417. if (isUni) {
  418. let done = false;
  419. const settimeoutkey = setTimeout(() => {
  420. if (!done) {
  421. rs();
  422. } else {
  423. clearTimeout(settimeoutkey);
  424. }
  425. }, 3e3);
  426. this.ctx.draw(reserve ?? false, () => {
  427. done = true;
  428. clearTimeout(settimeoutkey);
  429. rs();
  430. });
  431. } else {
  432. if (this._data.asyncDrawMode) {
  433. if (reserve !== true)
  434. this.clear();
  435. this.restoreAsyncDrawMode();
  436. this.resetPaintbrush();
  437. const arr = this._data.asyncDrawQueue;
  438. new Promise(async (resolve, reject) => {
  439. for (let i = 0; i < arr.length; i++) {
  440. const item = arr[i];
  441. try {
  442. const r = this[item.method].call(this, ...item.args);
  443. if (typeof (r == null ? void 0 : r.then) == "function")
  444. await r;
  445. } catch (error) {
  446. reject(error);
  447. return;
  448. }
  449. }
  450. resolve();
  451. }).then(() => {
  452. this._data.asyncDrawQueue = [];
  453. this.initAsyncDrawMode();
  454. rs();
  455. }).catch((err) => {
  456. this.initAsyncDrawMode();
  457. rj(err);
  458. });
  459. } else {
  460. rs();
  461. }
  462. }
  463. });
  464. }
  465. /**
  466. * canvas2image
  467. */
  468. toImage(obj = {}) {
  469. return new Promise((rs, rj) => {
  470. if (isUni) {
  471. const canvasId = this._args.canvasId;
  472. if (!canvasId) {
  473. rj("canvasId不存在");
  474. return;
  475. }
  476. uni.canvasToTempFilePath({
  477. ...obj,
  478. canvasId,
  479. success: (r) => {
  480. var _a;
  481. (_a = obj.success) == null ? void 0 : _a.call(obj, r);
  482. rs(r.tempFilePath);
  483. },
  484. fail: (err) => {
  485. var _a;
  486. (_a = obj.fail) == null ? void 0 : _a.call(obj, err);
  487. rj(err);
  488. }
  489. }, vmCache[this._id]);
  490. } else {
  491. rs(this.canvas.toDataURL(`image/${["jpg", "jpeg"].includes(obj.fileType) ? "jpeg" : "png"}`, obj.quality ?? 1));
  492. }
  493. });
  494. }
  495. /**
  496. * 计算文字多行
  497. */
  498. calcText(obj = {}) {
  499. const line = obj.line || -1;
  500. return new Promise((rs, rj) => {
  501. try {
  502. let run2 = function(text, endLine) {
  503. let endLineWidth = 0;
  504. const textWidth = mt(text).width;
  505. if (endLine) {
  506. if (textWidth < obj.maxWidth || text.length < 2) {
  507. return { index: text.length, ellipsis: false, width: textWidth };
  508. } else {
  509. endLineWidth = mt("...").width;
  510. }
  511. }
  512. const textWidthEndLineWidth = textWidth + endLineWidth;
  513. if (textWidthEndLineWidth < obj.maxWidth || text.length < 2) {
  514. return { index: text.length, ellipsis: false, width: textWidthEndLineWidth };
  515. }
  516. let loop = true, mid = Math.floor((text.length + 1) / 2), oldMid = 1, mode = "", tw;
  517. while (loop) {
  518. if (mid <= 1) {
  519. loop = false;
  520. break;
  521. }
  522. if (mid > text.length) {
  523. mid = text.length;
  524. loop = false;
  525. break;
  526. }
  527. const t = text.substr(0, mid);
  528. tw = mt(t).width + endLineWidth;
  529. if (tw > obj.maxWidth) {
  530. text = t;
  531. if (mode == "xy" && Math.abs(oldMid - mid) < 1) {
  532. loop = false;
  533. } else {
  534. mode = "dy";
  535. oldMid = mid;
  536. mid = Math.floor((t.length + 1) / 2);
  537. }
  538. } else if (tw == obj.maxWidth) {
  539. loop = false;
  540. } else {
  541. if (mid <= 1 || Math.abs(oldMid - mid) < 1) {
  542. loop = false;
  543. } else {
  544. mode = "xy";
  545. oldMid = mid;
  546. mid += Math.floor((text.length - mid) / 2);
  547. }
  548. }
  549. }
  550. return { index: mid, ellipsis: endLine, width: tw };
  551. };
  552. var run = run2;
  553. this.saveAndSetPaintbrush({
  554. ...obj.paintbrushProps || {}
  555. });
  556. const mt = this.measureText;
  557. let splitTexts = [], str = obj.val, width = 0;
  558. const font = { ...this._data.font };
  559. if (obj.maxWidth) {
  560. let i = 0;
  561. while (str.length) {
  562. const endLine = line > 0 && splitTexts.length + 1 >= line, { index: len, ellipsis, width: width2 } = run2(str, endLine);
  563. const txt = str.substr(0, len);
  564. splitTexts.push({ ...obj, val: txt, y: i ? obj.y + (font.fontSize + (obj.lineHeight || 0)) * i : obj.y, width: width2 });
  565. if (endLine) {
  566. if (ellipsis)
  567. splitTexts[splitTexts.length - 1].val += "...";
  568. str = "";
  569. } else
  570. str = str.slice(len);
  571. i++;
  572. }
  573. width = splitTexts.length == 1 ? splitTexts[0].width : splitTexts.length > 1 ? obj.maxWidth : 0;
  574. } else {
  575. splitTexts = [obj];
  576. width = mt(obj.val).width;
  577. }
  578. this.restorePaintbrush();
  579. rs({
  580. ...obj,
  581. calcTexts: splitTexts,
  582. _calc: true,
  583. left: obj.x,
  584. top: obj.y,
  585. right: obj.x + width,
  586. bottom: splitTexts[splitTexts.length - 1].y + font.fontSize,
  587. width,
  588. height: splitTexts[splitTexts.length - 1].y + font.fontSize - obj.y,
  589. fontSize: font.fontSize
  590. });
  591. } catch (error) {
  592. rj(error);
  593. }
  594. });
  595. }
  596. /* 绘制 */
  597. /**
  598. * 绘制文本
  599. */
  600. drawText(obj = {}) {
  601. return new Promise(async (rs, rj) => {
  602. try {
  603. if (!obj.val) {
  604. console.warn(`需绘制的文本为空`);
  605. rs();
  606. return;
  607. }
  608. this.saveAndSetPaintbrush({
  609. ...obj.paintbrushProps || {}
  610. });
  611. const ft = (obj2) => {
  612. this.fillText(obj2.val, obj2.x, obj2.y);
  613. }, ftItem = (item) => {
  614. ft(item);
  615. if (item.textDecoration)
  616. this.drawTextDecoration(item);
  617. };
  618. const calcR = obj._calc ? obj : await this.calcText(obj);
  619. for (let i = 0; i < calcR.calcTexts.length; i++) {
  620. ftItem(calcR.calcTexts[i]);
  621. }
  622. this.restorePaintbrush();
  623. rs(calcR);
  624. } catch (error) {
  625. rj(error);
  626. }
  627. });
  628. }
  629. drawStraightLine(obj = {}) {
  630. const { x1, y1, x2, y2, paintbrushProps } = obj, ctx = this.ctx;
  631. ctx.beginPath();
  632. ctx.moveTo(x1, y1);
  633. ctx.lineTo(x2, y2);
  634. this.saveAndSetPaintbrush(paintbrushProps || {});
  635. ctx.stroke();
  636. this.restorePaintbrush();
  637. }
  638. drawDoubleStraightLine(obj = {}) {
  639. let { gap } = obj;
  640. gap = gap ?? 1;
  641. this.drawStraightLine(obj);
  642. this.drawStraightLine({ ...obj, y1: obj.y1 + gap, y2: obj.y2 + gap });
  643. }
  644. drawDotted(obj = {}) {
  645. this.setCircle(obj);
  646. if (obj.clip)
  647. obj.clip = false;
  648. this.saveAndSetPaintbrush(obj.paintbrushProps || {});
  649. this.ctx.fill();
  650. this.restorePaintbrush();
  651. }
  652. drawDottedStraightLine(obj = {}) {
  653. let { x1, x2, y1, y2, gap, width, paintbrushProps } = obj;
  654. x2 = x2 - width;
  655. gap = gap || 1;
  656. const len = Math.sqrt(Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2));
  657. const points = getPoints(x1, y1, x2, y2, Math.floor((len - gap) / (width + gap)), 9999999999);
  658. this.saveAndSetPaintbrush(paintbrushProps);
  659. this.drawDotted({ x: x1, y: y1, d: width });
  660. for (let i = 0; i < points.length; i++)
  661. this.drawDotted({ x: points[i][0], y: points[i][1], d: width });
  662. this.drawDotted({ x: x2, y: y2, d: width });
  663. this.restorePaintbrush();
  664. }
  665. drawLine(obj = {}) {
  666. const { style } = obj;
  667. switch (style) {
  668. case "double":
  669. obj.gap = (obj.width || 1) * 1.5;
  670. this.drawDoubleStraightLine(obj);
  671. break;
  672. case "solide":
  673. this.drawStraightLine(obj);
  674. break;
  675. case "dotted":
  676. obj.gap = (obj.gap || 1) * 1.5;
  677. obj.paintbrushProps = { fillStyle: obj.color };
  678. this.drawDottedStraightLine(obj);
  679. break;
  680. }
  681. }
  682. /**
  683. * {
  684. ...(drawText属性),
  685. textDecoration: {
  686. line, //类型 同css text-decoration-line
  687. color, //线颜色
  688. width, //线宽度
  689. * }
  690. * }
  691. */
  692. drawTextDecoration(obj = {}) {
  693. this.savePaintbrush();
  694. const oldProps = this._data.oldPaintbrushProps, tw = this.measureText(obj.val).width, tD = obj.textDecoration, line = tD.line || "line-through", color = tD.color || obj.color || oldProps.fillStyle || "#000000", width = tD.thickness || tD.width || (obj.fontSize ? obj.fontSize * 0.1 : false) || 1, style = tD.style || "solide", offset = tD.offset || 0, gap = tD.gap ?? 1, fontSize = obj.fontSize || this._data.font.fontSize;
  695. this.setPaintbrush({ lineWidth: width, strokeStyle: color });
  696. let y = 0;
  697. switch (line) {
  698. case "line-through":
  699. y = obj.y + fontSize / 2 - width / 2;
  700. break;
  701. case "underline":
  702. y = obj.y + fontSize;
  703. break;
  704. case "overline":
  705. y = obj.y;
  706. break;
  707. }
  708. switch (oldProps.textBaseline) {
  709. case "top":
  710. y += width / 2;
  711. break;
  712. case "bottom":
  713. y -= fontSize;
  714. break;
  715. case "center":
  716. y -= fontSize / 2;
  717. break;
  718. }
  719. y += offset;
  720. switch (line) {
  721. case "line-through":
  722. case "underline":
  723. case "overline":
  724. this.drawLine({ x1: obj.x, y1: y, x2: obj.x + tw, y2: y, style, gap, width, color });
  725. break;
  726. }
  727. this.restorePaintbrush();
  728. }
  729. /**
  730. * 绘制图片
  731. */
  732. drawImg(obj = {}) {
  733. return new Promise(async (rs, rj) => {
  734. try {
  735. if (!obj.val) {
  736. console.warn(`需绘制的图片为空`);
  737. rs();
  738. return;
  739. }
  740. const calcR = obj._calc ? obj : await this.calcImg(obj);
  741. if ((calcR == null ? void 0 : calcR.drawImageArgs) && Array.isArray(calcR.drawImageArgs))
  742. this.ctx.drawImage(...(calcR == null ? void 0 : calcR.drawImageArgs) || []);
  743. rs(calcR);
  744. } catch (error) {
  745. rj(error);
  746. }
  747. });
  748. }
  749. calcImg(obj = {}) {
  750. return new Promise(async (rs, rj) => {
  751. try {
  752. if (!obj.val) {
  753. console.warn(`需绘制的图片为空`);
  754. rs();
  755. return;
  756. }
  757. const img = await this.loadImage(obj.val), mode = obj.mode || "scaleToFill";
  758. let arr, x = obj.x || 0, y = obj.y || 0, w = obj.width || 0, h = obj.height || 0, sw = img.width, sh = img.height, sx = 0, sy = 0;
  759. const get_6 = () => {
  760. if (isUni) {
  761. }
  762. return [sx, sy, sw, sh, x, y, w, h];
  763. };
  764. switch (mode) {
  765. case "aspectFit":
  766. h = img.height / img.width * w;
  767. if (h < obj.height) {
  768. y = Number(obj.y) + obj.height / 2 - h / 2;
  769. } else {
  770. h = obj.height;
  771. w = img.width / img.height * h;
  772. x = Number(obj.x) + obj.width / 2 - w / 2;
  773. }
  774. arr = get_6();
  775. break;
  776. case "aspectFill":
  777. h = img.height / img.width * w;
  778. if (h < obj.height) {
  779. h = obj.height;
  780. sx = img.width / img.height * obj.height;
  781. sx = (sx - obj.width) / sx * img.width / 2;
  782. sw = img.width - sx * 2;
  783. } else {
  784. sy = (h - obj.height) / h * img.height / 2;
  785. sh = img.height - sy * 2;
  786. }
  787. w = obj.width;
  788. h = obj.height;
  789. arr = get_6();
  790. break;
  791. case "widthFix":
  792. h = obj.height = img.height / img.width * obj.width;
  793. arr = [x, y, w, h];
  794. break;
  795. case "heightFix":
  796. w = obj.width = img.width / img.height * obj.height;
  797. arr = [x, y, w, h];
  798. break;
  799. default:
  800. arr = [x, y, w, h];
  801. }
  802. arr.unshift(isUni ? img.toString() : img);
  803. rs({ ...obj, drawImageArgs: [...arr], img, left: obj.x, top: obj.y, right: obj.x + obj.width, bottom: obj.y + obj.height, _calc: true });
  804. } catch (error) {
  805. rj(error);
  806. }
  807. });
  808. }
  809. /**
  810. * 绘制二维码
  811. * 诗小柒 的二维码生成器代码
  812. */
  813. drawQrCode(obj = {}) {
  814. return new Promise((rs, rj) => {
  815. if (!(obj == null ? void 0 : obj.val)) {
  816. console.warn("绘制二维码val为空");
  817. rs();
  818. return;
  819. }
  820. this.savePaintbrush();
  821. let qrcodeAlgObjCache = [];
  822. let options = {
  823. text: String(obj.val || "") || "",
  824. // 生成内容
  825. size: Number(obj.size || 0) || 200,
  826. // 二维码大小
  827. background: String(obj.background || "") || "#ffffff",
  828. // 背景色
  829. foreground: String(obj.foreground || "") || "#000000",
  830. // 前景色
  831. pdground: String(obj.pdground || "") || "#000000",
  832. // 定位角点颜色
  833. correctLevel: Number(obj.correctLevel || 0) || 3,
  834. // 容错级别
  835. dx: Number(obj.x || 0) || 0,
  836. // x轴距离
  837. dy: Number(obj.y || 0) || 0
  838. // y轴距离
  839. };
  840. let qrCodeAlg = null;
  841. let d = 0;
  842. for (var i = 0, l = qrcodeAlgObjCache.length; i < l; i++) {
  843. d = i;
  844. if (qrcodeAlgObjCache[i].text == options.text && qrcodeAlgObjCache[i].text.correctLevel == options.correctLevel) {
  845. qrCodeAlg = qrcodeAlgObjCache[i].obj;
  846. break;
  847. }
  848. }
  849. if (d == l) {
  850. qrCodeAlg = new QRCodeAlg(options.text, options.correctLevel);
  851. qrcodeAlgObjCache.push({
  852. text: options.text,
  853. correctLevel: options.correctLevel,
  854. obj: qrCodeAlg
  855. });
  856. }
  857. let getForeGround = function(config) {
  858. let options2 = config.options;
  859. if (options2.pdground && (config.row > 1 && config.row < 5 && config.col > 1 && config.col < 5 || config.row > config.count - 6 && config.row < config.count - 2 && config.col > 1 && config.col < 5 || config.row > 1 && config.row < 5 && config.col > config.count - 6 && config.col < config.count - 2)) {
  860. return options2.pdground;
  861. }
  862. return options2.foreground;
  863. };
  864. let count = qrCodeAlg.getModuleCount();
  865. let ratioSize = options.size;
  866. let tileW = ratioSize / count;
  867. let tileH = ratioSize / count;
  868. for (let row = 0; row < count; row++) {
  869. for (let col = 0; col < count; col++) {
  870. let w = (col + 1) * tileW - col * tileW;
  871. let h = (row + 1) * tileW - row * tileW;
  872. let foreground = getForeGround({
  873. row,
  874. col,
  875. count,
  876. options
  877. });
  878. this.setPaintbrush({ fillStyle: qrCodeAlg.modules[row][col] ? foreground : options.background });
  879. this.ctx.fillRect(options.dx + col * tileW, options.dy + row * tileH, w, h);
  880. }
  881. }
  882. this.restorePaintbrush();
  883. rs({ ...obj, height: obj.size, width: obj.size, left: obj.x, top: obj.y, right: obj.x + obj.width, bottom: obj.y + obj.size });
  884. });
  885. }
  886. /**
  887. * 圆形
  888. */
  889. setCircle(obj = {}) {
  890. const ctx = this.ctx;
  891. let { x, y, d, mode } = obj;
  892. mode = mode || "leftTop";
  893. const r = d / 2;
  894. if (obj.clip)
  895. ctx.save();
  896. ctx.beginPath();
  897. switch (mode) {
  898. case "leftTop":
  899. ctx.arc(x + r, y + r, r, 0, 2 * Math.PI);
  900. break;
  901. case "center":
  902. ctx.arc(x, y, r, 0, 2 * Math.PI);
  903. break;
  904. }
  905. ctx.closePath();
  906. if (obj.clip)
  907. ctx.clip();
  908. return this;
  909. }
  910. /**
  911. * 矩形
  912. */
  913. setRect(obj = {}) {
  914. const ctx = this.ctx;
  915. const { x, y, r, height, width } = obj;
  916. if (obj.clip)
  917. ctx.save();
  918. ctx.beginPath();
  919. if (r && r > 0) {
  920. ctx.arc(x + r, y + r, r, 1 * Math.PI, 1.5 * Math.PI);
  921. ctx.lineTo(x + width - r, y);
  922. ctx.arc(x + width - r, y + r, r, 1.5 * Math.PI, 0);
  923. ctx.lineTo(x + width, y + height - r);
  924. ctx.arc(x + width - r, y + height - r, r, 0, 0.5 * Math.PI);
  925. ctx.lineTo(x + r, y + height);
  926. ctx.arc(x + r, y + height - r, r, 0.5 * Math.PI, 1 * Math.PI);
  927. ctx.lineTo(x, y + r);
  928. } else {
  929. ctx.moveTo(x, y);
  930. ctx.lineTo(x + width, y);
  931. ctx.lineTo(x + width, y + height);
  932. ctx.lineTo(x, y + height);
  933. ctx.lineTo(x, y);
  934. }
  935. ctx.closePath();
  936. if (obj.clip)
  937. ctx.clip();
  938. return this;
  939. }
  940. /**
  941. * 加载图片
  942. */
  943. loadImage(url) {
  944. return new Promise(async (resolve, reject) => {
  945. if (!url) {
  946. console.warn("加载图片url为空");
  947. resolve();
  948. return;
  949. }
  950. if (imgCache[url]) {
  951. resolve(imgCache[url]);
  952. return;
  953. }
  954. let img;
  955. try {
  956. switch (platform) {
  957. case "uni":
  958. img = await new Promise((rs, rj) => {
  959. if (url._loaded) {
  960. rs(url);
  961. return;
  962. }
  963. if (~url.indexOf("data:image")) {
  964. let tempFilePath = url, imageInfoR = {};
  965. imgTools.base64ToPath(url).then((t) => {
  966. tempFilePath = t;
  967. uni.getImageInfo({
  968. src: tempFilePath,
  969. success: (imgInfo) => {
  970. imageInfoR = imgInfo;
  971. const uniImg = new String(tempFilePath);
  972. for (const i in imageInfoR)
  973. uniImg[i] = imageInfoR[i];
  974. uniImg._loaded = true;
  975. rs(uniImg);
  976. },
  977. fail: (err) => rj(err)
  978. });
  979. }).catch((err) => {
  980. rj(err);
  981. });
  982. } else if (url.substr(0, 4) == "http") {
  983. uni.downloadFile({
  984. url,
  985. success: ({ tempFilePath }) => {
  986. uni.getImageInfo({
  987. src: tempFilePath,
  988. success: (imageInfoR) => {
  989. const uniImg = new String(tempFilePath);
  990. for (const i in imageInfoR)
  991. uniImg[i] = imageInfoR[i];
  992. uniImg._loaded = true;
  993. rs(uniImg);
  994. },
  995. fail: (err) => rj(err)
  996. });
  997. },
  998. fail: (error) => rj(error)
  999. });
  1000. } else {
  1001. uni.getImageInfo({
  1002. src: url,
  1003. success: (imageInfoR) => {
  1004. const uniImg = new String(url);
  1005. for (const i in imageInfoR)
  1006. uniImg[i] = imageInfoR[i];
  1007. uniImg._loaded = true;
  1008. rs(uniImg);
  1009. },
  1010. fail: (err) => rj(err)
  1011. });
  1012. }
  1013. });
  1014. break;
  1015. case "web":
  1016. img = await new Promise((rs, rj) => {
  1017. if (typeof url != "string") {
  1018. rs(url);
  1019. return;
  1020. }
  1021. const imgObj = new Image();
  1022. imgObj.onload = () => {
  1023. rs(imgObj);
  1024. };
  1025. imgObj.onerror = (err) => {
  1026. rj(err);
  1027. };
  1028. imgObj.src = url;
  1029. });
  1030. break;
  1031. case "node":
  1032. img = await new Promise((rs, rj) => {
  1033. if (typeof url != "string") {
  1034. rs(url);
  1035. return;
  1036. }
  1037. nodeCanvas.loadImage(url).then((res) => {
  1038. rs(res);
  1039. }).catch((err) => {
  1040. rj(err);
  1041. });
  1042. });
  1043. break;
  1044. }
  1045. } catch (error) {
  1046. reject(error);
  1047. }
  1048. imgCache[url] = img;
  1049. resolve(img);
  1050. });
  1051. }
  1052. drawArray(data) {
  1053. return new Promise(async (rs, rj) => {
  1054. try {
  1055. if (!data) {
  1056. rj("drawArray需绘制参数不存在");
  1057. return;
  1058. }
  1059. if (!Array.isArray(data)) {
  1060. rj("drawArray参数需要是Array");
  1061. return;
  1062. }
  1063. data = [...data].sort((a, b) => ((a == null ? void 0 : a.zIndex) ?? 0) - ((b == null ? void 0 : b.zIndex) ?? 0));
  1064. const arr = [];
  1065. for (let i = 0; i < data.length; i++) {
  1066. const item = data[i];
  1067. let r;
  1068. switch (typeof item) {
  1069. case "function":
  1070. r = item();
  1071. if (typeof (r == null ? void 0 : r.then) == "function")
  1072. r = await r;
  1073. break;
  1074. case "object":
  1075. if (Array.isArray(item))
  1076. r = await this.drawArray(item);
  1077. else
  1078. r = await this.drawItem(item);
  1079. break;
  1080. }
  1081. arr.push({ item, result: r });
  1082. }
  1083. rs(arr);
  1084. } catch (error) {
  1085. rj(error);
  1086. }
  1087. });
  1088. }
  1089. drawItem(obj = {}) {
  1090. return new Promise(async (rs, rj) => {
  1091. var _a, _b;
  1092. try {
  1093. let r;
  1094. switch (obj.type) {
  1095. case "text":
  1096. r = await this.drawText(obj);
  1097. break;
  1098. case "image":
  1099. r = await this.drawImg(obj);
  1100. break;
  1101. case "qrcode":
  1102. r = await this.drawQrCode(obj);
  1103. break;
  1104. case "method":
  1105. r = (_a = this[obj.name]) == null ? void 0 : _a.call(this, ...obj.data ? Array.isArray(obj.data) ? obj.data : [obj.data] : []);
  1106. if (typeof (r == null ? void 0 : r.then) == "function")
  1107. r = await r;
  1108. break;
  1109. case "function":
  1110. r = (_b = obj.val) == null ? void 0 : _b.call(obj);
  1111. if (typeof (r == null ? void 0 : r.then) == "function")
  1112. r = await r;
  1113. break;
  1114. }
  1115. rs(r);
  1116. } catch (error) {
  1117. rj(error);
  1118. }
  1119. });
  1120. }
  1121. drawRichText(html) {
  1122. return new Promise(async (rs, rj) => {
  1123. if (!html) {
  1124. rj("drawRichText需绘制参数不存在");
  1125. return;
  1126. }
  1127. if (typeof html == "string")
  1128. html = htmlParse(html);
  1129. const result = [];
  1130. function run(arr, parent) {
  1131. return new Promise(async (res, rej) => {
  1132. var _a;
  1133. for (let i = 0; i < arr.length; i++) {
  1134. const item = arr[i];
  1135. if (item.type == "text") {
  1136. } else {
  1137. switch (item.name) {
  1138. case "img":
  1139. break;
  1140. }
  1141. }
  1142. result.push(item);
  1143. if ((_a = item.children) == null ? void 0 : _a.length) {
  1144. item.__handle = function(obj) {
  1145. };
  1146. try {
  1147. await run(item.children, item);
  1148. } catch (error) {
  1149. rej(error);
  1150. return;
  1151. }
  1152. }
  1153. }
  1154. res(result);
  1155. });
  1156. }
  1157. try {
  1158. rs({ html, htmlParses: await run(html) });
  1159. } catch (error) {
  1160. rj(error);
  1161. }
  1162. });
  1163. }
  1164. };
  1165. _nc = new WeakMap();
  1166. let QSCanvas2 = _QSCanvas;
  1167. function filterPaintbrushProps(obj) {
  1168. switch (obj == null ? void 0 : obj.textBaseline) {
  1169. case "normal":
  1170. if (isUni)
  1171. obj.textBaseline = "alphabetic";
  1172. break;
  1173. case "hanging":
  1174. if (isUni)
  1175. obj.textBaseline = "top";
  1176. break;
  1177. case "ideographic":
  1178. if (isUni)
  1179. obj.textBaseline = "bottom";
  1180. break;
  1181. }
  1182. switch (obj == null ? void 0 : obj.textAlign) {
  1183. case "start":
  1184. obj.textAlign = "left";
  1185. break;
  1186. case "end":
  1187. obj.textAlign = "right";
  1188. break;
  1189. }
  1190. }
  1191. function hump2Hyphen(s) {
  1192. return s.replace(/([A-Z])/g, "-$1").toLowerCase();
  1193. }
  1194. function hyphen2Hump(s) {
  1195. if (!s)
  1196. return "";
  1197. const arr = s.split("-");
  1198. for (var i = 1; i < arr.length; i++) {
  1199. arr[i] = arr[i].charAt(0).toUpperCase() + arr[i].substring(1);
  1200. }
  1201. return arr.join("");
  1202. }
  1203. function getPoints(x1, y1, x2, y2, pointCount, level) {
  1204. let a, b, rSquare, k, kv, points = [];
  1205. if (x1 === x2) {
  1206. a = x1 + (y2 - y1) * level;
  1207. b = y1 + (y2 - y1) / 2;
  1208. rSquare = (x1 - a) ** 2 + (y1 - b) ** 2;
  1209. } else if (y1 === y2) {
  1210. a = x1 + (x2 - x1) / 2;
  1211. b = y1 - (x2 - x1) * level;
  1212. rSquare = (x1 - a) ** 2 + (y1 - b) ** 2;
  1213. } else {
  1214. let xc = (x1 + x2) / 2, yc = (y1 + y2) / 2, lenSquare = ((x2 - x1) ** 2 + (y2 - y1) ** 2) * level ** 2;
  1215. k = (x2 - x1) / (y1 - y2);
  1216. let l = yc - k * xc;
  1217. let a1 = 1 + k ** 2, b1 = 2 * k * (l - yc) - 2 * xc, c1 = xc ** 2 + (l - yc) ** 2 - lenSquare;
  1218. kv = -1 / k;
  1219. a = (-b1 + Math.sqrt(b1 ** 2 - 4 * a1 * c1) * (kv > 0 && x2 > x1 || kv < 0 && x2 < x1 ? 1 : -1)) / (2 * a1);
  1220. b = k * a + l;
  1221. rSquare = (x1 - a) ** 2 + (y1 - b) ** 2;
  1222. }
  1223. if (x1 === x2 || Math.abs(kv) > 1) {
  1224. let yDistance = y2 - y1;
  1225. let yDis = yDistance / (pointCount + 1);
  1226. for (let i = 0; i < pointCount; i++) {
  1227. let y = y1 + yDis * (i + 1);
  1228. let x = Math.sqrt(rSquare - (y - b) ** 2) * (y2 > y1 ? -1 : 1) + a;
  1229. points.push([x, y]);
  1230. }
  1231. } else {
  1232. let xDistance = x2 - x1;
  1233. let xDis = xDistance / (pointCount + 1);
  1234. for (let i = 0; i < pointCount; i++) {
  1235. let x = x1 + xDis * (i + 1);
  1236. let y = Math.sqrt(rSquare - (x - a) ** 2) * (x2 > x1 ? 1 : -1) + b;
  1237. points.push([x, y]);
  1238. }
  1239. }
  1240. return points;
  1241. }
  1242. var QRCodeAlg = function() {
  1243. function unicodeFormat8(code) {
  1244. var c0, c1, c2;
  1245. if (code < 128) {
  1246. return [code];
  1247. } else if (code < 2048) {
  1248. c0 = 192 + (code >> 6);
  1249. c1 = 128 + (code & 63);
  1250. return [c0, c1];
  1251. } else {
  1252. c0 = 224 + (code >> 12);
  1253. c1 = 128 + (code >> 6 & 63);
  1254. c2 = 128 + (code & 63);
  1255. return [c0, c1, c2];
  1256. }
  1257. }
  1258. function getUTF8Bytes(string) {
  1259. var utf8codes = [];
  1260. for (var i2 = 0; i2 < string.length; i2++) {
  1261. var code = string.charCodeAt(i2);
  1262. var utf8 = unicodeFormat8(code);
  1263. for (var j = 0; j < utf8.length; j++) {
  1264. utf8codes.push(utf8[j]);
  1265. }
  1266. }
  1267. return utf8codes;
  1268. }
  1269. function QRCodeAlg2(data, errorCorrectLevel) {
  1270. this.typeNumber = -1;
  1271. this.errorCorrectLevel = errorCorrectLevel;
  1272. this.modules = null;
  1273. this.moduleCount = 0;
  1274. this.dataCache = null;
  1275. this.rsBlocks = null;
  1276. this.totalDataCount = -1;
  1277. this.data = data;
  1278. this.utf8bytes = getUTF8Bytes(data);
  1279. this.make();
  1280. }
  1281. QRCodeAlg2.prototype = { constructor: QRCodeAlg2, getModuleCount: function() {
  1282. return this.moduleCount;
  1283. }, make: function() {
  1284. this.getRightType();
  1285. this.dataCache = this.createData();
  1286. this.createQrcode();
  1287. }, makeImpl: function(maskPattern) {
  1288. this.moduleCount = this.typeNumber * 4 + 17;
  1289. this.modules = new Array(this.moduleCount);
  1290. for (var row = 0; row < this.moduleCount; row++) {
  1291. this.modules[row] = new Array(this.moduleCount);
  1292. }
  1293. this.setupPositionProbePattern(0, 0);
  1294. this.setupPositionProbePattern(this.moduleCount - 7, 0);
  1295. this.setupPositionProbePattern(0, this.moduleCount - 7);
  1296. this.setupPositionAdjustPattern();
  1297. this.setupTimingPattern();
  1298. this.setupTypeInfo(true, maskPattern);
  1299. if (this.typeNumber >= 7) {
  1300. this.setupTypeNumber(true);
  1301. }
  1302. this.mapData(this.dataCache, maskPattern);
  1303. }, setupPositionProbePattern: function(row, col) {
  1304. for (var r = -1; r <= 7; r++) {
  1305. if (row + r <= -1 || this.moduleCount <= row + r)
  1306. continue;
  1307. for (var c = -1; c <= 7; c++) {
  1308. if (col + c <= -1 || this.moduleCount <= col + c)
  1309. continue;
  1310. if (0 <= r && r <= 6 && (c == 0 || c == 6) || 0 <= c && c <= 6 && (r == 0 || r == 6) || 2 <= r && r <= 4 && 2 <= c && c <= 4) {
  1311. this.modules[row + r][col + c] = true;
  1312. } else {
  1313. this.modules[row + r][col + c] = false;
  1314. }
  1315. }
  1316. }
  1317. }, createQrcode: function() {
  1318. var minLostPoint = 0;
  1319. var pattern = 0;
  1320. var bestModules = null;
  1321. for (var i2 = 0; i2 < 8; i2++) {
  1322. this.makeImpl(i2);
  1323. var lostPoint = QRUtil.getLostPoint(this);
  1324. if (i2 == 0 || minLostPoint > lostPoint) {
  1325. minLostPoint = lostPoint;
  1326. pattern = i2;
  1327. bestModules = this.modules;
  1328. }
  1329. }
  1330. this.modules = bestModules;
  1331. this.setupTypeInfo(false, pattern);
  1332. if (this.typeNumber >= 7) {
  1333. this.setupTypeNumber(false);
  1334. }
  1335. }, setupTimingPattern: function() {
  1336. for (var r = 8; r < this.moduleCount - 8; r++) {
  1337. if (this.modules[r][6] != null) {
  1338. continue;
  1339. }
  1340. this.modules[r][6] = r % 2 == 0;
  1341. if (this.modules[6][r] != null) {
  1342. continue;
  1343. }
  1344. this.modules[6][r] = r % 2 == 0;
  1345. }
  1346. }, setupPositionAdjustPattern: function() {
  1347. var pos = QRUtil.getPatternPosition(this.typeNumber);
  1348. for (var i2 = 0; i2 < pos.length; i2++) {
  1349. for (var j = 0; j < pos.length; j++) {
  1350. var row = pos[i2];
  1351. var col = pos[j];
  1352. if (this.modules[row][col] != null) {
  1353. continue;
  1354. }
  1355. for (var r = -2; r <= 2; r++) {
  1356. for (var c = -2; c <= 2; c++) {
  1357. if (r == -2 || r == 2 || c == -2 || c == 2 || r == 0 && c == 0) {
  1358. this.modules[row + r][col + c] = true;
  1359. } else {
  1360. this.modules[row + r][col + c] = false;
  1361. }
  1362. }
  1363. }
  1364. }
  1365. }
  1366. }, setupTypeNumber: function(test) {
  1367. var bits = QRUtil.getBCHTypeNumber(this.typeNumber);
  1368. for (var i2 = 0; i2 < 18; i2++) {
  1369. var mod = !test && (bits >> i2 & 1) == 1;
  1370. this.modules[Math.floor(i2 / 3)][i2 % 3 + this.moduleCount - 8 - 3] = mod;
  1371. this.modules[i2 % 3 + this.moduleCount - 8 - 3][Math.floor(i2 / 3)] = mod;
  1372. }
  1373. }, setupTypeInfo: function(test, maskPattern) {
  1374. var data = QRErrorCorrectLevel[this.errorCorrectLevel] << 3 | maskPattern;
  1375. var bits = QRUtil.getBCHTypeInfo(data);
  1376. for (var i2 = 0; i2 < 15; i2++) {
  1377. var mod = !test && (bits >> i2 & 1) == 1;
  1378. if (i2 < 6) {
  1379. this.modules[i2][8] = mod;
  1380. } else if (i2 < 8) {
  1381. this.modules[i2 + 1][8] = mod;
  1382. } else {
  1383. this.modules[this.moduleCount - 15 + i2][8] = mod;
  1384. }
  1385. var mod = !test && (bits >> i2 & 1) == 1;
  1386. if (i2 < 8) {
  1387. this.modules[8][this.moduleCount - i2 - 1] = mod;
  1388. } else if (i2 < 9) {
  1389. this.modules[8][15 - i2 - 1 + 1] = mod;
  1390. } else {
  1391. this.modules[8][15 - i2 - 1] = mod;
  1392. }
  1393. }
  1394. this.modules[this.moduleCount - 8][8] = !test;
  1395. }, createData: function() {
  1396. var buffer = new QRBitBuffer();
  1397. var lengthBits = this.typeNumber > 9 ? 16 : 8;
  1398. buffer.put(4, 4);
  1399. buffer.put(this.utf8bytes.length, lengthBits);
  1400. for (var i2 = 0, l = this.utf8bytes.length; i2 < l; i2++) {
  1401. buffer.put(this.utf8bytes[i2], 8);
  1402. }
  1403. if (buffer.length + 4 <= this.totalDataCount * 8) {
  1404. buffer.put(0, 4);
  1405. }
  1406. while (buffer.length % 8 != 0) {
  1407. buffer.putBit(false);
  1408. }
  1409. while (true) {
  1410. if (buffer.length >= this.totalDataCount * 8) {
  1411. break;
  1412. }
  1413. buffer.put(QRCodeAlg2.PAD0, 8);
  1414. if (buffer.length >= this.totalDataCount * 8) {
  1415. break;
  1416. }
  1417. buffer.put(QRCodeAlg2.PAD1, 8);
  1418. }
  1419. return this.createBytes(buffer);
  1420. }, createBytes: function(buffer) {
  1421. var offset = 0;
  1422. var maxDcCount = 0;
  1423. var maxEcCount = 0;
  1424. var length = this.rsBlock.length / 3;
  1425. var rsBlocks = new Array();
  1426. for (var i2 = 0; i2 < length; i2++) {
  1427. var count = this.rsBlock[i2 * 3 + 0];
  1428. var totalCount = this.rsBlock[i2 * 3 + 1];
  1429. var dataCount = this.rsBlock[i2 * 3 + 2];
  1430. for (var j = 0; j < count; j++) {
  1431. rsBlocks.push([dataCount, totalCount]);
  1432. }
  1433. }
  1434. var dcdata = new Array(rsBlocks.length);
  1435. var ecdata = new Array(rsBlocks.length);
  1436. for (var r = 0; r < rsBlocks.length; r++) {
  1437. var dcCount = rsBlocks[r][0];
  1438. var ecCount = rsBlocks[r][1] - dcCount;
  1439. maxDcCount = Math.max(maxDcCount, dcCount);
  1440. maxEcCount = Math.max(maxEcCount, ecCount);
  1441. dcdata[r] = new Array(dcCount);
  1442. for (var i2 = 0; i2 < dcdata[r].length; i2++) {
  1443. dcdata[r][i2] = 255 & buffer.buffer[i2 + offset];
  1444. }
  1445. offset += dcCount;
  1446. var rsPoly = QRUtil.getErrorCorrectPolynomial(ecCount);
  1447. var rawPoly = new QRPolynomial(dcdata[r], rsPoly.getLength() - 1);
  1448. var modPoly = rawPoly.mod(rsPoly);
  1449. ecdata[r] = new Array(rsPoly.getLength() - 1);
  1450. for (var i2 = 0; i2 < ecdata[r].length; i2++) {
  1451. var modIndex = i2 + modPoly.getLength() - ecdata[r].length;
  1452. ecdata[r][i2] = modIndex >= 0 ? modPoly.get(modIndex) : 0;
  1453. }
  1454. }
  1455. var data = new Array(this.totalDataCount);
  1456. var index = 0;
  1457. for (var i2 = 0; i2 < maxDcCount; i2++) {
  1458. for (var r = 0; r < rsBlocks.length; r++) {
  1459. if (i2 < dcdata[r].length) {
  1460. data[index++] = dcdata[r][i2];
  1461. }
  1462. }
  1463. }
  1464. for (var i2 = 0; i2 < maxEcCount; i2++) {
  1465. for (var r = 0; r < rsBlocks.length; r++) {
  1466. if (i2 < ecdata[r].length) {
  1467. data[index++] = ecdata[r][i2];
  1468. }
  1469. }
  1470. }
  1471. return data;
  1472. }, mapData: function(data, maskPattern) {
  1473. var inc = -1;
  1474. var row = this.moduleCount - 1;
  1475. var bitIndex = 7;
  1476. var byteIndex = 0;
  1477. for (var col = this.moduleCount - 1; col > 0; col -= 2) {
  1478. if (col == 6)
  1479. col--;
  1480. while (true) {
  1481. for (var c = 0; c < 2; c++) {
  1482. if (this.modules[row][col - c] == null) {
  1483. var dark = false;
  1484. if (byteIndex < data.length) {
  1485. dark = (data[byteIndex] >>> bitIndex & 1) == 1;
  1486. }
  1487. var mask = QRUtil.getMask(maskPattern, row, col - c);
  1488. if (mask) {
  1489. dark = !dark;
  1490. }
  1491. this.modules[row][col - c] = dark;
  1492. bitIndex--;
  1493. if (bitIndex == -1) {
  1494. byteIndex++;
  1495. bitIndex = 7;
  1496. }
  1497. }
  1498. }
  1499. row += inc;
  1500. if (row < 0 || this.moduleCount <= row) {
  1501. row -= inc;
  1502. inc = -inc;
  1503. break;
  1504. }
  1505. }
  1506. }
  1507. } };
  1508. QRCodeAlg2.PAD0 = 236;
  1509. QRCodeAlg2.PAD1 = 17;
  1510. var QRErrorCorrectLevel = [1, 0, 3, 2];
  1511. var QRMaskPattern = { PATTERN000: 0, PATTERN001: 1, PATTERN010: 2, PATTERN011: 3, PATTERN100: 4, PATTERN101: 5, PATTERN110: 6, PATTERN111: 7 };
  1512. var QRUtil = { PATTERN_POSITION_TABLE: [[], [6, 18], [6, 22], [6, 26], [6, 30], [6, 34], [6, 22, 38], [6, 24, 42], [6, 26, 46], [6, 28, 50], [6, 30, 54], [6, 32, 58], [6, 34, 62], [6, 26, 46, 66], [6, 26, 48, 70], [6, 26, 50, 74], [6, 30, 54, 78], [6, 30, 56, 82], [6, 30, 58, 86], [6, 34, 62, 90], [6, 28, 50, 72, 94], [6, 26, 50, 74, 98], [6, 30, 54, 78, 102], [6, 28, 54, 80, 106], [6, 32, 58, 84, 110], [6, 30, 58, 86, 114], [6, 34, 62, 90, 118], [6, 26, 50, 74, 98, 122], [6, 30, 54, 78, 102, 126], [6, 26, 52, 78, 104, 130], [6, 30, 56, 82, 108, 134], [6, 34, 60, 86, 112, 138], [6, 30, 58, 86, 114, 142], [6, 34, 62, 90, 118, 146], [6, 30, 54, 78, 102, 126, 150], [6, 24, 50, 76, 102, 128, 154], [6, 28, 54, 80, 106, 132, 158], [6, 32, 58, 84, 110, 136, 162], [6, 26, 54, 82, 110, 138, 166], [6, 30, 58, 86, 114, 142, 170]], G15: 1 << 10 | 1 << 8 | 1 << 5 | 1 << 4 | 1 << 2 | 1 << 1 | 1 << 0, G18: 1 << 12 | 1 << 11 | 1 << 10 | 1 << 9 | 1 << 8 | 1 << 5 | 1 << 2 | 1 << 0, G15_MASK: 1 << 14 | 1 << 12 | 1 << 10 | 1 << 4 | 1 << 1, getBCHTypeInfo: function(data) {
  1513. var d = data << 10;
  1514. while (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G15) >= 0) {
  1515. d ^= QRUtil.G15 << QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G15);
  1516. }
  1517. return (data << 10 | d) ^ QRUtil.G15_MASK;
  1518. }, getBCHTypeNumber: function(data) {
  1519. var d = data << 12;
  1520. while (QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G18) >= 0) {
  1521. d ^= QRUtil.G18 << QRUtil.getBCHDigit(d) - QRUtil.getBCHDigit(QRUtil.G18);
  1522. }
  1523. return data << 12 | d;
  1524. }, getBCHDigit: function(data) {
  1525. var digit = 0;
  1526. while (data != 0) {
  1527. digit++;
  1528. data >>>= 1;
  1529. }
  1530. return digit;
  1531. }, getPatternPosition: function(typeNumber) {
  1532. return QRUtil.PATTERN_POSITION_TABLE[typeNumber - 1];
  1533. }, getMask: function(maskPattern, i2, j) {
  1534. switch (maskPattern) {
  1535. case QRMaskPattern.PATTERN000:
  1536. return (i2 + j) % 2 == 0;
  1537. case QRMaskPattern.PATTERN001:
  1538. return i2 % 2 == 0;
  1539. case QRMaskPattern.PATTERN010:
  1540. return j % 3 == 0;
  1541. case QRMaskPattern.PATTERN011:
  1542. return (i2 + j) % 3 == 0;
  1543. case QRMaskPattern.PATTERN100:
  1544. return (Math.floor(i2 / 2) + Math.floor(j / 3)) % 2 == 0;
  1545. case QRMaskPattern.PATTERN101:
  1546. return i2 * j % 2 + i2 * j % 3 == 0;
  1547. case QRMaskPattern.PATTERN110:
  1548. return (i2 * j % 2 + i2 * j % 3) % 2 == 0;
  1549. case QRMaskPattern.PATTERN111:
  1550. return (i2 * j % 3 + (i2 + j) % 2) % 2 == 0;
  1551. default:
  1552. throw new Error("bad maskPattern:" + maskPattern);
  1553. }
  1554. }, getErrorCorrectPolynomial: function(errorCorrectLength) {
  1555. var a = new QRPolynomial([1], 0);
  1556. for (var i2 = 0; i2 < errorCorrectLength; i2++) {
  1557. a = a.multiply(new QRPolynomial([1, QRMath.gexp(i2)], 0));
  1558. }
  1559. return a;
  1560. }, getLostPoint: function(qrCode) {
  1561. var moduleCount = qrCode.getModuleCount(), lostPoint = 0, darkCount = 0;
  1562. for (var row = 0; row < moduleCount; row++) {
  1563. var sameCount = 0;
  1564. var head = qrCode.modules[row][0];
  1565. for (var col = 0; col < moduleCount; col++) {
  1566. var current = qrCode.modules[row][col];
  1567. if (col < moduleCount - 6) {
  1568. if (current && !qrCode.modules[row][col + 1] && qrCode.modules[row][col + 2] && qrCode.modules[row][col + 3] && qrCode.modules[row][col + 4] && !qrCode.modules[row][col + 5] && qrCode.modules[row][col + 6]) {
  1569. if (col < moduleCount - 10) {
  1570. if (qrCode.modules[row][col + 7] && qrCode.modules[row][col + 8] && qrCode.modules[row][col + 9] && qrCode.modules[row][col + 10]) {
  1571. lostPoint += 40;
  1572. }
  1573. } else if (col > 3) {
  1574. if (qrCode.modules[row][col - 1] && qrCode.modules[row][col - 2] && qrCode.modules[row][col - 3] && qrCode.modules[row][col - 4]) {
  1575. lostPoint += 40;
  1576. }
  1577. }
  1578. }
  1579. }
  1580. if (row < moduleCount - 1 && col < moduleCount - 1) {
  1581. var count = 0;
  1582. if (current)
  1583. count++;
  1584. if (qrCode.modules[row + 1][col])
  1585. count++;
  1586. if (qrCode.modules[row][col + 1])
  1587. count++;
  1588. if (qrCode.modules[row + 1][col + 1])
  1589. count++;
  1590. if (count == 0 || count == 4) {
  1591. lostPoint += 3;
  1592. }
  1593. }
  1594. if (head ^ current) {
  1595. sameCount++;
  1596. } else {
  1597. head = current;
  1598. if (sameCount >= 5) {
  1599. lostPoint += 3 + sameCount - 5;
  1600. }
  1601. sameCount = 1;
  1602. }
  1603. if (current) {
  1604. darkCount++;
  1605. }
  1606. }
  1607. }
  1608. for (var col = 0; col < moduleCount; col++) {
  1609. var sameCount = 0;
  1610. var head = qrCode.modules[0][col];
  1611. for (var row = 0; row < moduleCount; row++) {
  1612. var current = qrCode.modules[row][col];
  1613. if (row < moduleCount - 6) {
  1614. if (current && !qrCode.modules[row + 1][col] && qrCode.modules[row + 2][col] && qrCode.modules[row + 3][col] && qrCode.modules[row + 4][col] && !qrCode.modules[row + 5][col] && qrCode.modules[row + 6][col]) {
  1615. if (row < moduleCount - 10) {
  1616. if (qrCode.modules[row + 7][col] && qrCode.modules[row + 8][col] && qrCode.modules[row + 9][col] && qrCode.modules[row + 10][col]) {
  1617. lostPoint += 40;
  1618. }
  1619. } else if (row > 3) {
  1620. if (qrCode.modules[row - 1][col] && qrCode.modules[row - 2][col] && qrCode.modules[row - 3][col] && qrCode.modules[row - 4][col]) {
  1621. lostPoint += 40;
  1622. }
  1623. }
  1624. }
  1625. }
  1626. if (head ^ current) {
  1627. sameCount++;
  1628. } else {
  1629. head = current;
  1630. if (sameCount >= 5) {
  1631. lostPoint += 3 + sameCount - 5;
  1632. }
  1633. sameCount = 1;
  1634. }
  1635. }
  1636. }
  1637. var ratio = Math.abs(100 * darkCount / moduleCount / moduleCount - 50) / 5;
  1638. lostPoint += ratio * 10;
  1639. return lostPoint;
  1640. } };
  1641. var QRMath = { glog: function(n) {
  1642. if (n < 1) {
  1643. throw new Error("glog(" + n + ")");
  1644. }
  1645. return QRMath.LOG_TABLE[n];
  1646. }, gexp: function(n) {
  1647. while (n < 0) {
  1648. n += 255;
  1649. }
  1650. while (n >= 256) {
  1651. n -= 255;
  1652. }
  1653. return QRMath.EXP_TABLE[n];
  1654. }, EXP_TABLE: new Array(256), LOG_TABLE: new Array(256) };
  1655. for (var i = 0; i < 8; i++) {
  1656. QRMath.EXP_TABLE[i] = 1 << i;
  1657. }
  1658. for (var i = 8; i < 256; i++) {
  1659. QRMath.EXP_TABLE[i] = QRMath.EXP_TABLE[i - 4] ^ QRMath.EXP_TABLE[i - 5] ^ QRMath.EXP_TABLE[i - 6] ^ QRMath.EXP_TABLE[i - 8];
  1660. }
  1661. for (var i = 0; i < 255; i++) {
  1662. QRMath.LOG_TABLE[QRMath.EXP_TABLE[i]] = i;
  1663. }
  1664. function QRPolynomial(num, shift) {
  1665. if (num.length == void 0) {
  1666. throw new Error(num.length + "/" + shift);
  1667. }
  1668. var offset = 0;
  1669. while (offset < num.length && num[offset] == 0) {
  1670. offset++;
  1671. }
  1672. this.num = new Array(num.length - offset + shift);
  1673. for (var i2 = 0; i2 < num.length - offset; i2++) {
  1674. this.num[i2] = num[i2 + offset];
  1675. }
  1676. }
  1677. QRPolynomial.prototype = { get: function(index) {
  1678. return this.num[index];
  1679. }, getLength: function() {
  1680. return this.num.length;
  1681. }, multiply: function(e) {
  1682. var num = new Array(this.getLength() + e.getLength() - 1);
  1683. for (var i2 = 0; i2 < this.getLength(); i2++) {
  1684. for (var j = 0; j < e.getLength(); j++) {
  1685. num[i2 + j] ^= QRMath.gexp(QRMath.glog(this.get(i2)) + QRMath.glog(e.get(j)));
  1686. }
  1687. }
  1688. return new QRPolynomial(num, 0);
  1689. }, mod: function(e) {
  1690. var tl = this.getLength(), el = e.getLength();
  1691. if (tl - el < 0) {
  1692. return this;
  1693. }
  1694. var num = new Array(tl);
  1695. for (var i2 = 0; i2 < tl; i2++) {
  1696. num[i2] = this.get(i2);
  1697. }
  1698. while (num.length >= el) {
  1699. var ratio = QRMath.glog(num[0]) - QRMath.glog(e.get(0));
  1700. for (var i2 = 0; i2 < e.getLength(); i2++) {
  1701. num[i2] ^= QRMath.gexp(QRMath.glog(e.get(i2)) + ratio);
  1702. }
  1703. while (num[0] == 0) {
  1704. num.shift();
  1705. }
  1706. }
  1707. return new QRPolynomial(num, 0);
  1708. } };
  1709. var RS_BLOCK_TABLE = [[1, 26, 19], [1, 26, 16], [1, 26, 13], [1, 26, 9], [1, 44, 34], [1, 44, 28], [1, 44, 22], [1, 44, 16], [1, 70, 55], [1, 70, 44], [2, 35, 17], [2, 35, 13], [1, 100, 80], [2, 50, 32], [2, 50, 24], [4, 25, 9], [1, 134, 108], [2, 67, 43], [2, 33, 15, 2, 34, 16], [2, 33, 11, 2, 34, 12], [2, 86, 68], [4, 43, 27], [4, 43, 19], [4, 43, 15], [2, 98, 78], [4, 49, 31], [2, 32, 14, 4, 33, 15], [4, 39, 13, 1, 40, 14], [2, 121, 97], [2, 60, 38, 2, 61, 39], [4, 40, 18, 2, 41, 19], [4, 40, 14, 2, 41, 15], [2, 146, 116], [3, 58, 36, 2, 59, 37], [4, 36, 16, 4, 37, 17], [4, 36, 12, 4, 37, 13], [2, 86, 68, 2, 87, 69], [4, 69, 43, 1, 70, 44], [6, 43, 19, 2, 44, 20], [6, 43, 15, 2, 44, 16], [4, 101, 81], [1, 80, 50, 4, 81, 51], [4, 50, 22, 4, 51, 23], [3, 36, 12, 8, 37, 13], [2, 116, 92, 2, 117, 93], [6, 58, 36, 2, 59, 37], [4, 46, 20, 6, 47, 21], [7, 42, 14, 4, 43, 15], [4, 133, 107], [8, 59, 37, 1, 60, 38], [8, 44, 20, 4, 45, 21], [12, 33, 11, 4, 34, 12], [3, 145, 115, 1, 146, 116], [4, 64, 40, 5, 65, 41], [11, 36, 16, 5, 37, 17], [11, 36, 12, 5, 37, 13], [5, 109, 87, 1, 110, 88], [5, 65, 41, 5, 66, 42], [5, 54, 24, 7, 55, 25], [11, 36, 12], [5, 122, 98, 1, 123, 99], [7, 73, 45, 3, 74, 46], [15, 43, 19, 2, 44, 20], [3, 45, 15, 13, 46, 16], [1, 135, 107, 5, 136, 108], [10, 74, 46, 1, 75, 47], [1, 50, 22, 15, 51, 23], [2, 42, 14, 17, 43, 15], [5, 150, 120, 1, 151, 121], [9, 69, 43, 4, 70, 44], [17, 50, 22, 1, 51, 23], [2, 42, 14, 19, 43, 15], [3, 141, 113, 4, 142, 114], [3, 70, 44, 11, 71, 45], [17, 47, 21, 4, 48, 22], [9, 39, 13, 16, 40, 14], [3, 135, 107, 5, 136, 108], [3, 67, 41, 13, 68, 42], [15, 54, 24, 5, 55, 25], [15, 43, 15, 10, 44, 16], [4, 144, 116, 4, 145, 117], [17, 68, 42], [17, 50, 22, 6, 51, 23], [19, 46, 16, 6, 47, 17], [2, 139, 111, 7, 140, 112], [17, 74, 46], [7, 54, 24, 16, 55, 25], [34, 37, 13], [4, 151, 121, 5, 152, 122], [4, 75, 47, 14, 76, 48], [11, 54, 24, 14, 55, 25], [16, 45, 15, 14, 46, 16], [6, 147, 117, 4, 148, 118], [6, 73, 45, 14, 74, 46], [11, 54, 24, 16, 55, 25], [30, 46, 16, 2, 47, 17], [8, 132, 106, 4, 133, 107], [8, 75, 47, 13, 76, 48], [7, 54, 24, 22, 55, 25], [22, 45, 15, 13, 46, 16], [10, 142, 114, 2, 143, 115], [19, 74, 46, 4, 75, 47], [28, 50, 22, 6, 51, 23], [33, 46, 16, 4, 47, 17], [8, 152, 122, 4, 153, 123], [22, 73, 45, 3, 74, 46], [8, 53, 23, 26, 54, 24], [12, 45, 15, 28, 46, 16], [3, 147, 117, 10, 148, 118], [3, 73, 45, 23, 74, 46], [4, 54, 24, 31, 55, 25], [11, 45, 15, 31, 46, 16], [7, 146, 116, 7, 147, 117], [21, 73, 45, 7, 74, 46], [1, 53, 23, 37, 54, 24], [19, 45, 15, 26, 46, 16], [5, 145, 115, 10, 146, 116], [19, 75, 47, 10, 76, 48], [15, 54, 24, 25, 55, 25], [23, 45, 15, 25, 46, 16], [13, 145, 115, 3, 146, 116], [2, 74, 46, 29, 75, 47], [42, 54, 24, 1, 55, 25], [23, 45, 15, 28, 46, 16], [17, 145, 115], [10, 74, 46, 23, 75, 47], [10, 54, 24, 35, 55, 25], [19, 45, 15, 35, 46, 16], [17, 145, 115, 1, 146, 116], [14, 74, 46, 21, 75, 47], [29, 54, 24, 19, 55, 25], [11, 45, 15, 46, 46, 16], [13, 145, 115, 6, 146, 116], [14, 74, 46, 23, 75, 47], [44, 54, 24, 7, 55, 25], [59, 46, 16, 1, 47, 17], [12, 151, 121, 7, 152, 122], [12, 75, 47, 26, 76, 48], [39, 54, 24, 14, 55, 25], [22, 45, 15, 41, 46, 16], [6, 151, 121, 14, 152, 122], [6, 75, 47, 34, 76, 48], [46, 54, 24, 10, 55, 25], [2, 45, 15, 64, 46, 16], [17, 152, 122, 4, 153, 123], [29, 74, 46, 14, 75, 47], [49, 54, 24, 10, 55, 25], [24, 45, 15, 46, 46, 16], [4, 152, 122, 18, 153, 123], [13, 74, 46, 32, 75, 47], [48, 54, 24, 14, 55, 25], [42, 45, 15, 32, 46, 16], [20, 147, 117, 4, 148, 118], [40, 75, 47, 7, 76, 48], [43, 54, 24, 22, 55, 25], [10, 45, 15, 67, 46, 16], [19, 148, 118, 6, 149, 119], [18, 75, 47, 31, 76, 48], [34, 54, 24, 34, 55, 25], [20, 45, 15, 61, 46, 16]];
  1710. QRCodeAlg2.prototype.getRightType = function() {
  1711. for (var typeNumber = 1; typeNumber < 41; typeNumber++) {
  1712. var rsBlock = RS_BLOCK_TABLE[(typeNumber - 1) * 4 + this.errorCorrectLevel];
  1713. if (rsBlock == void 0) {
  1714. throw new Error("bad rs block @ typeNumber:" + typeNumber + "/errorCorrectLevel:" + this.errorCorrectLevel);
  1715. }
  1716. var length = rsBlock.length / 3;
  1717. var totalDataCount = 0;
  1718. for (var i2 = 0; i2 < length; i2++) {
  1719. var count = rsBlock[i2 * 3 + 0];
  1720. var dataCount = rsBlock[i2 * 3 + 2];
  1721. totalDataCount += dataCount * count;
  1722. }
  1723. var lengthBytes = typeNumber > 9 ? 2 : 1;
  1724. if (this.utf8bytes.length + lengthBytes < totalDataCount || typeNumber == 40) {
  1725. this.typeNumber = typeNumber;
  1726. this.rsBlock = rsBlock;
  1727. this.totalDataCount = totalDataCount;
  1728. break;
  1729. }
  1730. }
  1731. };
  1732. function QRBitBuffer() {
  1733. this.buffer = new Array();
  1734. this.length = 0;
  1735. }
  1736. QRBitBuffer.prototype = { get: function(index) {
  1737. var bufIndex = Math.floor(index / 8);
  1738. return this.buffer[bufIndex] >>> 7 - index % 8 & 1;
  1739. }, put: function(num, length) {
  1740. for (var i2 = 0; i2 < length; i2++) {
  1741. this.putBit(num >>> length - i2 - 1 & 1);
  1742. }
  1743. }, putBit: function(bit) {
  1744. var bufIndex = Math.floor(this.length / 8);
  1745. if (this.buffer.length <= bufIndex) {
  1746. this.buffer.push(0);
  1747. }
  1748. if (bit) {
  1749. this.buffer[bufIndex] |= 128 >>> this.length % 8;
  1750. }
  1751. this.length++;
  1752. } };
  1753. return QRCodeAlg2;
  1754. }();
  1755. var htmlParse = function() {
  1756. var startTag = /^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/;
  1757. var endTag = /^<\/([-A-Za-z0-9_]+)[^>]*>/;
  1758. var attr = /([a-zA-Z_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g;
  1759. var empty = makeMap("area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr");
  1760. var block = makeMap("a,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video");
  1761. var inline = makeMap("abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var");
  1762. var closeSelf = makeMap("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr");
  1763. var fillAttrs = makeMap("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected");
  1764. var special = makeMap("script,style");
  1765. function HTMLParser(html, handler) {
  1766. var index;
  1767. var chars;
  1768. var match;
  1769. var stack = [];
  1770. var last = html;
  1771. stack.last = function() {
  1772. return this[this.length - 1];
  1773. };
  1774. while (html) {
  1775. chars = true;
  1776. if (!stack.last() || !special[stack.last()]) {
  1777. if (html.indexOf("<!--") == 0) {
  1778. index = html.indexOf("-->");
  1779. if (index >= 0) {
  1780. if (handler.comment) {
  1781. handler.comment(html.substring(4, index));
  1782. }
  1783. html = html.substring(index + 3);
  1784. chars = false;
  1785. }
  1786. } else if (html.indexOf("</") == 0) {
  1787. match = html.match(endTag);
  1788. if (match) {
  1789. html = html.substring(match[0].length);
  1790. match[0].replace(endTag, parseEndTag);
  1791. chars = false;
  1792. }
  1793. } else if (html.indexOf("<") == 0) {
  1794. match = html.match(startTag);
  1795. if (match) {
  1796. html = html.substring(match[0].length);
  1797. match[0].replace(startTag, parseStartTag);
  1798. chars = false;
  1799. }
  1800. }
  1801. if (chars) {
  1802. index = html.indexOf("<");
  1803. var text = index < 0 ? html : html.substring(0, index);
  1804. html = index < 0 ? "" : html.substring(index);
  1805. if (handler.chars) {
  1806. handler.chars(text);
  1807. }
  1808. }
  1809. } else {
  1810. html = html.replace(new RegExp("([\\s\\S]*?)</" + stack.last() + "[^>]*>"), function(all, text2) {
  1811. text2 = text2.replace(/<!--([\s\S]*?)-->|<!\[CDATA\[([\s\S]*?)]]>/g, "$1$2");
  1812. if (handler.chars) {
  1813. handler.chars(text2);
  1814. }
  1815. return "";
  1816. });
  1817. parseEndTag("", stack.last());
  1818. }
  1819. if (html == last) {
  1820. throw "Parse Error: " + html;
  1821. }
  1822. last = html;
  1823. }
  1824. parseEndTag();
  1825. function parseStartTag(tag, tagName, rest, unary) {
  1826. tagName = tagName.toLowerCase();
  1827. if (block[tagName]) {
  1828. while (stack.last() && inline[stack.last()]) {
  1829. parseEndTag("", stack.last());
  1830. }
  1831. }
  1832. if (closeSelf[tagName] && stack.last() == tagName) {
  1833. parseEndTag("", tagName);
  1834. }
  1835. unary = empty[tagName] || !!unary;
  1836. if (!unary) {
  1837. stack.push(tagName);
  1838. }
  1839. if (handler.start) {
  1840. var attrs = [];
  1841. rest.replace(attr, function(match2, name) {
  1842. var value = arguments[2] ? arguments[2] : arguments[3] ? arguments[3] : arguments[4] ? arguments[4] : fillAttrs[name] ? name : "";
  1843. attrs.push({ name, value, escaped: value.replace(/(^|[^\\])"/g, '$1\\"') });
  1844. });
  1845. if (handler.start) {
  1846. handler.start(tagName, attrs, unary);
  1847. }
  1848. }
  1849. }
  1850. function parseEndTag(tag, tagName) {
  1851. if (!tagName) {
  1852. var pos = 0;
  1853. } else {
  1854. for (var pos = stack.length - 1; pos >= 0; pos--) {
  1855. if (stack[pos] == tagName) {
  1856. break;
  1857. }
  1858. }
  1859. }
  1860. if (pos >= 0) {
  1861. for (var i = stack.length - 1; i >= pos; i--) {
  1862. if (handler.end) {
  1863. handler.end(stack[i]);
  1864. }
  1865. }
  1866. stack.length = pos;
  1867. }
  1868. }
  1869. }
  1870. function makeMap(str) {
  1871. var obj = {};
  1872. var items = str.split(",");
  1873. for (var i = 0; i < items.length; i++) {
  1874. obj[items[i]] = true;
  1875. }
  1876. return obj;
  1877. }
  1878. function removeDOCTYPE(html) {
  1879. return html.replace(/<\?xml.*\?>\n/, "").replace(/<!doctype.*>\n/, "").replace(/<!DOCTYPE.*>\n/, "");
  1880. }
  1881. function parseAttrs(attrs) {
  1882. return attrs.reduce(function(pre, attr2) {
  1883. var value = attr2.value;
  1884. var name = attr2.name;
  1885. if (pre[name]) {
  1886. pre[name] = pre[name] + " " + value;
  1887. } else {
  1888. pre[name] = value;
  1889. }
  1890. return pre;
  1891. }, {});
  1892. }
  1893. function parseHtml(html) {
  1894. html = removeDOCTYPE(html);
  1895. var stacks = [];
  1896. var results = { node: "root", children: [] };
  1897. HTMLParser(html, { start: function start(tag, attrs, unary) {
  1898. var node = { name: tag };
  1899. if (attrs.length !== 0) {
  1900. node.attrs = parseAttrs(attrs);
  1901. }
  1902. if (unary) {
  1903. var parent = stacks[0] || results;
  1904. if (!parent.children) {
  1905. parent.children = [];
  1906. }
  1907. parent.children.push(node);
  1908. } else {
  1909. stacks.unshift(node);
  1910. }
  1911. }, end: function end(tag) {
  1912. var node = stacks.shift();
  1913. if (node.name !== tag)
  1914. console.error("invalid state: mismatch end tag");
  1915. if (stacks.length === 0) {
  1916. results.children.push(node);
  1917. } else {
  1918. var parent = stacks[0];
  1919. if (!parent.children) {
  1920. parent.children = [];
  1921. }
  1922. parent.children.push(node);
  1923. }
  1924. }, chars: function chars(text) {
  1925. var node = { type: "text", text };
  1926. if (stacks.length === 0) {
  1927. results.children.push(node);
  1928. } else {
  1929. var parent = stacks[0];
  1930. if (!parent.children) {
  1931. parent.children = [];
  1932. }
  1933. parent.children.push(node);
  1934. }
  1935. }, comment: function comment(text) {
  1936. var node = { node: "comment", text };
  1937. var parent = stacks[0];
  1938. if (!parent.children) {
  1939. parent.children = [];
  1940. }
  1941. parent.children.push(node);
  1942. } });
  1943. return results.children;
  1944. }
  1945. return parseHtml;
  1946. }();
  1947. var imgTools = /* @__PURE__ */ function() {
  1948. function getLocalFilePath(path) {
  1949. if (path.indexOf("_www") === 0 || path.indexOf("_doc") === 0 || path.indexOf("_documents") === 0 || path.indexOf("_downloads") === 0) {
  1950. return path;
  1951. }
  1952. if (path.indexOf("file://") === 0) {
  1953. return path;
  1954. }
  1955. if (path.indexOf("/storage/emulated/0/") === 0) {
  1956. return path;
  1957. }
  1958. if (path.indexOf("/") === 0) {
  1959. var localFilePath = plus.io.convertAbsoluteFileSystem(path);
  1960. if (localFilePath !== path) {
  1961. return localFilePath;
  1962. } else {
  1963. path = path.substr(1);
  1964. }
  1965. }
  1966. return "_www/" + path;
  1967. }
  1968. function dataUrlToBase64(str) {
  1969. var array = str.split(",");
  1970. return array[array.length - 1];
  1971. }
  1972. var index = 0;
  1973. function getNewFileId() {
  1974. return Date.now() + String(index++);
  1975. }
  1976. function biggerThan(v1, v2) {
  1977. var v1Array = v1.split(".");
  1978. var v2Array = v2.split(".");
  1979. var update = false;
  1980. for (var index2 = 0; index2 < v2Array.length; index2++) {
  1981. var diff = v1Array[index2] - v2Array[index2];
  1982. if (diff !== 0) {
  1983. update = diff > 0;
  1984. break;
  1985. }
  1986. }
  1987. return update;
  1988. }
  1989. function pathToBase64(path) {
  1990. return new Promise(function(resolve, reject) {
  1991. if (typeof window === "object" && "document" in window) {
  1992. if (typeof FileReader === "function") {
  1993. var xhr = new XMLHttpRequest();
  1994. xhr.open("GET", path, true);
  1995. xhr.responseType = "blob";
  1996. xhr.onload = function() {
  1997. if (this.status === 200) {
  1998. let fileReader = new FileReader();
  1999. fileReader.onload = function(e) {
  2000. resolve(e.target.result);
  2001. };
  2002. fileReader.onerror = reject;
  2003. fileReader.readAsDataURL(this.response);
  2004. }
  2005. };
  2006. xhr.onerror = reject;
  2007. xhr.send();
  2008. return;
  2009. }
  2010. var canvas = document.createElement("canvas");
  2011. var c2x = canvas.getContext("2d");
  2012. var img = new Image();
  2013. img.onload = function() {
  2014. canvas.width = img.width;
  2015. canvas.height = img.height;
  2016. c2x.drawImage(img, 0, 0);
  2017. resolve(canvas.toDataURL());
  2018. canvas.height = canvas.width = 0;
  2019. };
  2020. img.onerror = reject;
  2021. img.src = path;
  2022. return;
  2023. }
  2024. if (typeof plus === "object") {
  2025. plus.io.resolveLocalFileSystemURL(getLocalFilePath(path), function(entry) {
  2026. entry.file(function(file) {
  2027. var fileReader = new plus.io.FileReader();
  2028. fileReader.onload = function(data) {
  2029. resolve(data.target.result);
  2030. };
  2031. fileReader.onerror = function(error) {
  2032. reject(error);
  2033. };
  2034. fileReader.readAsDataURL(file);
  2035. }, function(error) {
  2036. reject(error);
  2037. });
  2038. }, function(error) {
  2039. reject(error);
  2040. });
  2041. return;
  2042. }
  2043. if (typeof wx === "object" && wx.canIUse("getFileSystemManager")) {
  2044. wx.getFileSystemManager().readFile({
  2045. filePath: path,
  2046. encoding: "base64",
  2047. success: function(res) {
  2048. resolve("data:image/png;base64," + res.data);
  2049. },
  2050. fail: function(error) {
  2051. reject(error);
  2052. }
  2053. });
  2054. return;
  2055. }
  2056. reject(new Error("not support"));
  2057. });
  2058. }
  2059. function base64ToPath(base64) {
  2060. return new Promise(function(resolve, reject) {
  2061. if (typeof window === "object" && "document" in window) {
  2062. base64 = base64.split(",");
  2063. var type = base64[0].match(/:(.*?);/)[1];
  2064. var str = atob(base64[1]);
  2065. var n = str.length;
  2066. var array = new Uint8Array(n);
  2067. while (n--) {
  2068. array[n] = str.charCodeAt(n);
  2069. }
  2070. return resolve((window.URL || window.webkitURL).createObjectURL(new Blob([array], { type })));
  2071. }
  2072. var extName = base64.split(",")[0].match(/data\:\S+\/(\S+);/);
  2073. if (extName) {
  2074. extName = extName[1];
  2075. } else {
  2076. reject(new Error("base64 error"));
  2077. }
  2078. var fileName = getNewFileId() + "." + extName;
  2079. if (typeof plus === "object") {
  2080. var basePath = "_doc";
  2081. var dirPath = "uniapp_temp";
  2082. var filePath = basePath + "/" + dirPath + "/" + fileName;
  2083. if (!biggerThan(plus.os.name === "Android" ? "1.9.9.80627" : "1.9.9.80472", plus.runtime.innerVersion)) {
  2084. plus.io.resolveLocalFileSystemURL(basePath, function(entry) {
  2085. entry.getDirectory(dirPath, {
  2086. create: true,
  2087. exclusive: false
  2088. }, function(entry2) {
  2089. entry2.getFile(fileName, {
  2090. create: true,
  2091. exclusive: false
  2092. }, function(entry3) {
  2093. entry3.createWriter(function(writer) {
  2094. writer.onwrite = function() {
  2095. resolve(filePath);
  2096. };
  2097. writer.onerror = reject;
  2098. writer.seek(0);
  2099. writer.writeAsBinary(dataUrlToBase64(base64));
  2100. }, reject);
  2101. }, reject);
  2102. }, reject);
  2103. }, reject);
  2104. return;
  2105. }
  2106. var bitmap = new plus.nativeObj.Bitmap(fileName);
  2107. bitmap.loadBase64Data(base64, function() {
  2108. bitmap.save(filePath, {}, function() {
  2109. bitmap.clear();
  2110. resolve(filePath);
  2111. }, function(error) {
  2112. bitmap.clear();
  2113. reject(error);
  2114. });
  2115. }, function(error) {
  2116. bitmap.clear();
  2117. reject(error);
  2118. });
  2119. return;
  2120. }
  2121. function getEnvPath() {
  2122. var _a, _b, _c, _d, _e, _f;
  2123. if (typeof my === "object" && ((_a = my == null ? void 0 : my.env) == null ? void 0 : _a.USER_DATA_PATH)) {
  2124. return my.env.USER_DATA_PATH;
  2125. }
  2126. if (typeof swan === "object" && ((_b = swan == null ? void 0 : swan.env) == null ? void 0 : _b.USER_DATA_PATH)) {
  2127. return swan.env.USER_DATA_PATH;
  2128. }
  2129. if (typeof tt === "object" && ((_c = tt == null ? void 0 : tt.env) == null ? void 0 : _c.USER_DATA_PATH)) {
  2130. return tt.env.USER_DATA_PATH;
  2131. }
  2132. if (typeof qq === "object" && ((_d = qq == null ? void 0 : qq.env) == null ? void 0 : _d.USER_DATA_PATH)) {
  2133. return qq.env.USER_DATA_PATH;
  2134. }
  2135. if (typeof qh === "object" && ((_e = qh == null ? void 0 : qh.env) == null ? void 0 : _e.USER_DATA_PATH)) {
  2136. return qh.env.USER_DATA_PATH;
  2137. }
  2138. if (typeof wx === "object" && ((_f = wx == null ? void 0 : wx.env) == null ? void 0 : _f.USER_DATA_PATH)) {
  2139. return wx.env.USER_DATA_PATH;
  2140. }
  2141. return "https://user";
  2142. }
  2143. try {
  2144. var filePath = getEnvPath() + "/" + fileName;
  2145. uni.getFileSystemManager().writeFile({
  2146. filePath,
  2147. data: dataUrlToBase64(base64),
  2148. encoding: "base64",
  2149. success: function() {
  2150. resolve(filePath);
  2151. },
  2152. fail: function(error) {
  2153. reject(error);
  2154. }
  2155. });
  2156. } catch (e) {
  2157. reject(new Error("not support"));
  2158. }
  2159. });
  2160. }
  2161. return { pathToBase64, base64ToPath };
  2162. }();
  2163. if (notUnd(typeof module)) {
  2164. module.exports = QSCanvas2;
  2165. }
  2166. return QSCanvas2;
  2167. }();
  2168. }
  2169. });
  2170. export default require_qs_canvas();
  2171. //# sourceMappingURL=qs-canvas.js.map