qrcode_wx.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. !(function() {
  2. // alignment pattern
  3. var adelta = [
  4. 0, 11, 15, 19, 23, 27, 31,
  5. 16, 18, 20, 22, 24, 26, 28, 20, 22, 24, 24, 26, 28, 28, 22, 24, 24,
  6. 26, 26, 28, 28, 24, 24, 26, 26, 26, 28, 28, 24, 26, 26, 26, 28, 28
  7. ];
  8. // version block
  9. var vpat = [
  10. 0xc94, 0x5bc, 0xa99, 0x4d3, 0xbf6, 0x762, 0x847, 0x60d,
  11. 0x928, 0xb78, 0x45d, 0xa17, 0x532, 0x9a6, 0x683, 0x8c9,
  12. 0x7ec, 0xec4, 0x1e1, 0xfab, 0x08e, 0xc1a, 0x33f, 0xd75,
  13. 0x250, 0x9d5, 0x6f0, 0x8ba, 0x79f, 0xb0b, 0x42e, 0xa64,
  14. 0x541, 0xc69
  15. ];
  16. // final format bits with mask: level << 3 | mask
  17. var fmtword = [
  18. 0x77c4, 0x72f3, 0x7daa, 0x789d, 0x662f, 0x6318, 0x6c41, 0x6976, //L
  19. 0x5412, 0x5125, 0x5e7c, 0x5b4b, 0x45f9, 0x40ce, 0x4f97, 0x4aa0, //M
  20. 0x355f, 0x3068, 0x3f31, 0x3a06, 0x24b4, 0x2183, 0x2eda, 0x2bed, //Q
  21. 0x1689, 0x13be, 0x1ce7, 0x19d0, 0x0762, 0x0255, 0x0d0c, 0x083b //H
  22. ];
  23. // 4 per version: number of blocks 1,2; data width; ecc width
  24. var eccblocks = [
  25. 1, 0, 19, 7, 1, 0, 16, 10, 1, 0, 13, 13, 1, 0, 9, 17,
  26. 1, 0, 34, 10, 1, 0, 28, 16, 1, 0, 22, 22, 1, 0, 16, 28,
  27. 1, 0, 55, 15, 1, 0, 44, 26, 2, 0, 17, 18, 2, 0, 13, 22,
  28. 1, 0, 80, 20, 2, 0, 32, 18, 2, 0, 24, 26, 4, 0, 9, 16,
  29. 1, 0, 108, 26, 2, 0, 43, 24, 2, 2, 15, 18, 2, 2, 11, 22,
  30. 2, 0, 68, 18, 4, 0, 27, 16, 4, 0, 19, 24, 4, 0, 15, 28,
  31. 2, 0, 78, 20, 4, 0, 31, 18, 2, 4, 14, 18, 4, 1, 13, 26,
  32. 2, 0, 97, 24, 2, 2, 38, 22, 4, 2, 18, 22, 4, 2, 14, 26,
  33. 2, 0, 116, 30, 3, 2, 36, 22, 4, 4, 16, 20, 4, 4, 12, 24,
  34. 2, 2, 68, 18, 4, 1, 43, 26, 6, 2, 19, 24, 6, 2, 15, 28,
  35. 4, 0, 81, 20, 1, 4, 50, 30, 4, 4, 22, 28, 3, 8, 12, 24,
  36. 2, 2, 92, 24, 6, 2, 36, 22, 4, 6, 20, 26, 7, 4, 14, 28,
  37. 4, 0, 107, 26, 8, 1, 37, 22, 8, 4, 20, 24, 12, 4, 11, 22,
  38. 3, 1, 115, 30, 4, 5, 40, 24, 11, 5, 16, 20, 11, 5, 12, 24,
  39. 5, 1, 87, 22, 5, 5, 41, 24, 5, 7, 24, 30, 11, 7, 12, 24,
  40. 5, 1, 98, 24, 7, 3, 45, 28, 15, 2, 19, 24, 3, 13, 15, 30,
  41. 1, 5, 107, 28, 10, 1, 46, 28, 1, 15, 22, 28, 2, 17, 14, 28,
  42. 5, 1, 120, 30, 9, 4, 43, 26, 17, 1, 22, 28, 2, 19, 14, 28,
  43. 3, 4, 113, 28, 3, 11, 44, 26, 17, 4, 21, 26, 9, 16, 13, 26,
  44. 3, 5, 107, 28, 3, 13, 41, 26, 15, 5, 24, 30, 15, 10, 15, 28,
  45. 4, 4, 116, 28, 17, 0, 42, 26, 17, 6, 22, 28, 19, 6, 16, 30,
  46. 2, 7, 111, 28, 17, 0, 46, 28, 7, 16, 24, 30, 34, 0, 13, 24,
  47. 4, 5, 121, 30, 4, 14, 47, 28, 11, 14, 24, 30, 16, 14, 15, 30,
  48. 6, 4, 117, 30, 6, 14, 45, 28, 11, 16, 24, 30, 30, 2, 16, 30,
  49. 8, 4, 106, 26, 8, 13, 47, 28, 7, 22, 24, 30, 22, 13, 15, 30,
  50. 10, 2, 114, 28, 19, 4, 46, 28, 28, 6, 22, 28, 33, 4, 16, 30,
  51. 8, 4, 122, 30, 22, 3, 45, 28, 8, 26, 23, 30, 12, 28, 15, 30,
  52. 3, 10, 117, 30, 3, 23, 45, 28, 4, 31, 24, 30, 11, 31, 15, 30,
  53. 7, 7, 116, 30, 21, 7, 45, 28, 1, 37, 23, 30, 19, 26, 15, 30,
  54. 5, 10, 115, 30, 19, 10, 47, 28, 15, 25, 24, 30, 23, 25, 15, 30,
  55. 13, 3, 115, 30, 2, 29, 46, 28, 42, 1, 24, 30, 23, 28, 15, 30,
  56. 17, 0, 115, 30, 10, 23, 46, 28, 10, 35, 24, 30, 19, 35, 15, 30,
  57. 17, 1, 115, 30, 14, 21, 46, 28, 29, 19, 24, 30, 11, 46, 15, 30,
  58. 13, 6, 115, 30, 14, 23, 46, 28, 44, 7, 24, 30, 59, 1, 16, 30,
  59. 12, 7, 121, 30, 12, 26, 47, 28, 39, 14, 24, 30, 22, 41, 15, 30,
  60. 6, 14, 121, 30, 6, 34, 47, 28, 46, 10, 24, 30, 2, 64, 15, 30,
  61. 17, 4, 122, 30, 29, 14, 46, 28, 49, 10, 24, 30, 24, 46, 15, 30,
  62. 4, 18, 122, 30, 13, 32, 46, 28, 48, 14, 24, 30, 42, 32, 15, 30,
  63. 20, 4, 117, 30, 40, 7, 47, 28, 43, 22, 24, 30, 10, 67, 15, 30,
  64. 19, 6, 118, 30, 18, 31, 47, 28, 34, 34, 24, 30, 20, 61, 15, 30
  65. ];
  66. // Galois field log table
  67. var glog = [
  68. 0xff, 0x00, 0x01, 0x19, 0x02, 0x32, 0x1a, 0xc6, 0x03, 0xdf, 0x33, 0xee, 0x1b, 0x68, 0xc7, 0x4b,
  69. 0x04, 0x64, 0xe0, 0x0e, 0x34, 0x8d, 0xef, 0x81, 0x1c, 0xc1, 0x69, 0xf8, 0xc8, 0x08, 0x4c, 0x71,
  70. 0x05, 0x8a, 0x65, 0x2f, 0xe1, 0x24, 0x0f, 0x21, 0x35, 0x93, 0x8e, 0xda, 0xf0, 0x12, 0x82, 0x45,
  71. 0x1d, 0xb5, 0xc2, 0x7d, 0x6a, 0x27, 0xf9, 0xb9, 0xc9, 0x9a, 0x09, 0x78, 0x4d, 0xe4, 0x72, 0xa6,
  72. 0x06, 0xbf, 0x8b, 0x62, 0x66, 0xdd, 0x30, 0xfd, 0xe2, 0x98, 0x25, 0xb3, 0x10, 0x91, 0x22, 0x88,
  73. 0x36, 0xd0, 0x94, 0xce, 0x8f, 0x96, 0xdb, 0xbd, 0xf1, 0xd2, 0x13, 0x5c, 0x83, 0x38, 0x46, 0x40,
  74. 0x1e, 0x42, 0xb6, 0xa3, 0xc3, 0x48, 0x7e, 0x6e, 0x6b, 0x3a, 0x28, 0x54, 0xfa, 0x85, 0xba, 0x3d,
  75. 0xca, 0x5e, 0x9b, 0x9f, 0x0a, 0x15, 0x79, 0x2b, 0x4e, 0xd4, 0xe5, 0xac, 0x73, 0xf3, 0xa7, 0x57,
  76. 0x07, 0x70, 0xc0, 0xf7, 0x8c, 0x80, 0x63, 0x0d, 0x67, 0x4a, 0xde, 0xed, 0x31, 0xc5, 0xfe, 0x18,
  77. 0xe3, 0xa5, 0x99, 0x77, 0x26, 0xb8, 0xb4, 0x7c, 0x11, 0x44, 0x92, 0xd9, 0x23, 0x20, 0x89, 0x2e,
  78. 0x37, 0x3f, 0xd1, 0x5b, 0x95, 0xbc, 0xcf, 0xcd, 0x90, 0x87, 0x97, 0xb2, 0xdc, 0xfc, 0xbe, 0x61,
  79. 0xf2, 0x56, 0xd3, 0xab, 0x14, 0x2a, 0x5d, 0x9e, 0x84, 0x3c, 0x39, 0x53, 0x47, 0x6d, 0x41, 0xa2,
  80. 0x1f, 0x2d, 0x43, 0xd8, 0xb7, 0x7b, 0xa4, 0x76, 0xc4, 0x17, 0x49, 0xec, 0x7f, 0x0c, 0x6f, 0xf6,
  81. 0x6c, 0xa1, 0x3b, 0x52, 0x29, 0x9d, 0x55, 0xaa, 0xfb, 0x60, 0x86, 0xb1, 0xbb, 0xcc, 0x3e, 0x5a,
  82. 0xcb, 0x59, 0x5f, 0xb0, 0x9c, 0xa9, 0xa0, 0x51, 0x0b, 0xf5, 0x16, 0xeb, 0x7a, 0x75, 0x2c, 0xd7,
  83. 0x4f, 0xae, 0xd5, 0xe9, 0xe6, 0xe7, 0xad, 0xe8, 0x74, 0xd6, 0xf4, 0xea, 0xa8, 0x50, 0x58, 0xaf
  84. ];
  85. // Galios field exponent table
  86. var gexp = [
  87. 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1d, 0x3a, 0x74, 0xe8, 0xcd, 0x87, 0x13, 0x26,
  88. 0x4c, 0x98, 0x2d, 0x5a, 0xb4, 0x75, 0xea, 0xc9, 0x8f, 0x03, 0x06, 0x0c, 0x18, 0x30, 0x60, 0xc0,
  89. 0x9d, 0x27, 0x4e, 0x9c, 0x25, 0x4a, 0x94, 0x35, 0x6a, 0xd4, 0xb5, 0x77, 0xee, 0xc1, 0x9f, 0x23,
  90. 0x46, 0x8c, 0x05, 0x0a, 0x14, 0x28, 0x50, 0xa0, 0x5d, 0xba, 0x69, 0xd2, 0xb9, 0x6f, 0xde, 0xa1,
  91. 0x5f, 0xbe, 0x61, 0xc2, 0x99, 0x2f, 0x5e, 0xbc, 0x65, 0xca, 0x89, 0x0f, 0x1e, 0x3c, 0x78, 0xf0,
  92. 0xfd, 0xe7, 0xd3, 0xbb, 0x6b, 0xd6, 0xb1, 0x7f, 0xfe, 0xe1, 0xdf, 0xa3, 0x5b, 0xb6, 0x71, 0xe2,
  93. 0xd9, 0xaf, 0x43, 0x86, 0x11, 0x22, 0x44, 0x88, 0x0d, 0x1a, 0x34, 0x68, 0xd0, 0xbd, 0x67, 0xce,
  94. 0x81, 0x1f, 0x3e, 0x7c, 0xf8, 0xed, 0xc7, 0x93, 0x3b, 0x76, 0xec, 0xc5, 0x97, 0x33, 0x66, 0xcc,
  95. 0x85, 0x17, 0x2e, 0x5c, 0xb8, 0x6d, 0xda, 0xa9, 0x4f, 0x9e, 0x21, 0x42, 0x84, 0x15, 0x2a, 0x54,
  96. 0xa8, 0x4d, 0x9a, 0x29, 0x52, 0xa4, 0x55, 0xaa, 0x49, 0x92, 0x39, 0x72, 0xe4, 0xd5, 0xb7, 0x73,
  97. 0xe6, 0xd1, 0xbf, 0x63, 0xc6, 0x91, 0x3f, 0x7e, 0xfc, 0xe5, 0xd7, 0xb3, 0x7b, 0xf6, 0xf1, 0xff,
  98. 0xe3, 0xdb, 0xab, 0x4b, 0x96, 0x31, 0x62, 0xc4, 0x95, 0x37, 0x6e, 0xdc, 0xa5, 0x57, 0xae, 0x41,
  99. 0x82, 0x19, 0x32, 0x64, 0xc8, 0x8d, 0x07, 0x0e, 0x1c, 0x38, 0x70, 0xe0, 0xdd, 0xa7, 0x53, 0xa6,
  100. 0x51, 0xa2, 0x59, 0xb2, 0x79, 0xf2, 0xf9, 0xef, 0xc3, 0x9b, 0x2b, 0x56, 0xac, 0x45, 0x8a, 0x09,
  101. 0x12, 0x24, 0x48, 0x90, 0x3d, 0x7a, 0xf4, 0xf5, 0xf7, 0xf3, 0xfb, 0xeb, 0xcb, 0x8b, 0x0b, 0x16,
  102. 0x2c, 0x58, 0xb0, 0x7d, 0xfa, 0xe9, 0xcf, 0x83, 0x1b, 0x36, 0x6c, 0xd8, 0xad, 0x47, 0x8e, 0x00
  103. ];
  104. // Working buffers:
  105. // data input and ecc append, image working buffer, fixed part of image, run lengths for badness
  106. var strinbuf = [],
  107. eccbuf = [],
  108. qrframe = [],
  109. framask = [],
  110. rlens = [];
  111. // Control values - width is based on version, last 4 are from table.
  112. var version, width, neccblk1, neccblk2, datablkw, eccblkwid;
  113. var ecclevel = 2;
  114. // set bit to indicate cell in qrframe is immutable. symmetric around diagonal
  115. function setmask(x, y) {
  116. var bt;
  117. if (x > y) {
  118. bt = x;
  119. x = y;
  120. y = bt;
  121. }
  122. // y*y = 1+3+5...
  123. bt = y;
  124. bt *= y;
  125. bt += y;
  126. bt >>= 1;
  127. bt += x;
  128. framask[bt] = 1;
  129. }
  130. // enter alignment pattern - black to qrframe, white to mask (later black frame merged to mask)
  131. function putalign(x, y) {
  132. var j;
  133. qrframe[x + width * y] = 1;
  134. for (j = -2; j < 2; j++) {
  135. qrframe[(x + j) + width * (y - 2)] = 1;
  136. qrframe[(x - 2) + width * (y + j + 1)] = 1;
  137. qrframe[(x + 2) + width * (y + j)] = 1;
  138. qrframe[(x + j + 1) + width * (y + 2)] = 1;
  139. }
  140. for (j = 0; j < 2; j++) {
  141. setmask(x - 1, y + j);
  142. setmask(x + 1, y - j);
  143. setmask(x - j, y - 1);
  144. setmask(x + j, y + 1);
  145. }
  146. }
  147. //========================================================================
  148. // Reed Solomon error correction
  149. // exponentiation mod N
  150. function modnn(x) {
  151. while (x >= 255) {
  152. x -= 255;
  153. x = (x >> 8) + (x & 255);
  154. }
  155. return x;
  156. }
  157. var genpoly = [];
  158. // Calculate and append ECC data to data block. Block is in strinbuf, indexes to buffers given.
  159. function appendrs(data, dlen, ecbuf, eclen) {
  160. var i, j, fb;
  161. for (i = 0; i < eclen; i++)
  162. strinbuf[ecbuf + i] = 0;
  163. for (i = 0; i < dlen; i++) {
  164. fb = glog[strinbuf[data + i] ^ strinbuf[ecbuf]];
  165. if (fb != 255) /* fb term is non-zero */
  166. for (j = 1; j < eclen; j++)
  167. strinbuf[ecbuf + j - 1] = strinbuf[ecbuf + j] ^ gexp[modnn(fb + genpoly[eclen - j])];
  168. else
  169. for (j = ecbuf; j < ecbuf + eclen; j++)
  170. strinbuf[j] = strinbuf[j + 1];
  171. strinbuf[ecbuf + eclen - 1] = fb == 255 ? 0 : gexp[modnn(fb + genpoly[0])];
  172. }
  173. }
  174. //========================================================================
  175. // Frame data insert following the path rules
  176. // check mask - since symmetrical use half.
  177. function ismasked(x, y) {
  178. var bt;
  179. if (x > y) {
  180. bt = x;
  181. x = y;
  182. y = bt;
  183. }
  184. bt = y;
  185. bt += y * y;
  186. bt >>= 1;
  187. bt += x;
  188. return framask[bt];
  189. }
  190. //========================================================================
  191. // Apply the selected mask out of the 8.
  192. function applymask(m) {
  193. var x, y, r3x, r3y;
  194. switch (m) {
  195. case 0:
  196. for (y = 0; y < width; y++)
  197. for (x = 0; x < width; x++)
  198. if (!((x + y) & 1) && !ismasked(x, y))
  199. qrframe[x + y * width] ^= 1;
  200. break;
  201. case 1:
  202. for (y = 0; y < width; y++)
  203. for (x = 0; x < width; x++)
  204. if (!(y & 1) && !ismasked(x, y))
  205. qrframe[x + y * width] ^= 1;
  206. break;
  207. case 2:
  208. for (y = 0; y < width; y++)
  209. for (r3x = 0, x = 0; x < width; x++, r3x++) {
  210. if (r3x == 3)
  211. r3x = 0;
  212. if (!r3x && !ismasked(x, y))
  213. qrframe[x + y * width] ^= 1;
  214. }
  215. break;
  216. case 3:
  217. for (r3y = 0, y = 0; y < width; y++, r3y++) {
  218. if (r3y == 3)
  219. r3y = 0;
  220. for (r3x = r3y, x = 0; x < width; x++, r3x++) {
  221. if (r3x == 3)
  222. r3x = 0;
  223. if (!r3x && !ismasked(x, y))
  224. qrframe[x + y * width] ^= 1;
  225. }
  226. }
  227. break;
  228. case 4:
  229. for (y = 0; y < width; y++)
  230. for (r3x = 0, r3y = ((y >> 1) & 1), x = 0; x < width; x++, r3x++) {
  231. if (r3x == 3) {
  232. r3x = 0;
  233. r3y = !r3y;
  234. }
  235. if (!r3y && !ismasked(x, y))
  236. qrframe[x + y * width] ^= 1;
  237. }
  238. break;
  239. case 5:
  240. for (r3y = 0, y = 0; y < width; y++, r3y++) {
  241. if (r3y == 3)
  242. r3y = 0;
  243. for (r3x = 0, x = 0; x < width; x++, r3x++) {
  244. if (r3x == 3)
  245. r3x = 0;
  246. if (!((x & y & 1) + !(!r3x | !r3y)) && !ismasked(x, y))
  247. qrframe[x + y * width] ^= 1;
  248. }
  249. }
  250. break;
  251. case 6:
  252. for (r3y = 0, y = 0; y < width; y++, r3y++) {
  253. if (r3y == 3)
  254. r3y = 0;
  255. for (r3x = 0, x = 0; x < width; x++, r3x++) {
  256. if (r3x == 3)
  257. r3x = 0;
  258. if (!(((x & y & 1) + (r3x && (r3x == r3y))) & 1) && !ismasked(x, y))
  259. qrframe[x + y * width] ^= 1;
  260. }
  261. }
  262. break;
  263. case 7:
  264. for (r3y = 0, y = 0; y < width; y++, r3y++) {
  265. if (r3y == 3)
  266. r3y = 0;
  267. for (r3x = 0, x = 0; x < width; x++, r3x++) {
  268. if (r3x == 3)
  269. r3x = 0;
  270. if (!(((r3x && (r3x == r3y)) + ((x + y) & 1)) & 1) && !ismasked(x, y))
  271. qrframe[x + y * width] ^= 1;
  272. }
  273. }
  274. break;
  275. }
  276. return;
  277. }
  278. // Badness coefficients.
  279. var N1 = 3,
  280. N2 = 3,
  281. N3 = 40,
  282. N4 = 10;
  283. // Using the table of the length of each run, calculate the amount of bad image
  284. // - long runs or those that look like finders; called twice, once each for X and Y
  285. function badruns(length) {
  286. var i;
  287. var runsbad = 0;
  288. for (i = 0; i <= length; i++)
  289. if (rlens[i] >= 5)
  290. runsbad += N1 + rlens[i] - 5;
  291. // BwBBBwB as in finder
  292. for (i = 3; i < length - 1; i += 2)
  293. if (rlens[i - 2] == rlens[i + 2] &&
  294. rlens[i + 2] == rlens[i - 1] &&
  295. rlens[i - 1] == rlens[i + 1] &&
  296. rlens[i - 1] * 3 == rlens[i]
  297. // white around the black pattern? Not part of spec
  298. &&
  299. (rlens[i - 3] == 0 // beginning
  300. ||
  301. i + 3 > length // end
  302. ||
  303. rlens[i - 3] * 3 >= rlens[i] * 4 || rlens[i + 3] * 3 >= rlens[i] * 4)
  304. )
  305. runsbad += N3;
  306. return runsbad;
  307. }
  308. // Calculate how bad the masked image is - blocks, imbalance, runs, or finders.
  309. function badcheck() {
  310. var x, y, h, b, b1;
  311. var thisbad = 0;
  312. var bw = 0;
  313. // blocks of same color.
  314. for (y = 0; y < width - 1; y++)
  315. for (x = 0; x < width - 1; x++)
  316. if ((qrframe[x + width * y] && qrframe[(x + 1) + width * y] &&
  317. qrframe[x + width * (y + 1)] && qrframe[(x + 1) + width * (y + 1)]) // all black
  318. ||
  319. !(qrframe[x + width * y] || qrframe[(x + 1) + width * y] ||
  320. qrframe[x + width * (y + 1)] || qrframe[(x + 1) + width * (y + 1)])) // all white
  321. thisbad += N2;
  322. // X runs
  323. for (y = 0; y < width; y++) {
  324. rlens[0] = 0;
  325. for (h = b = x = 0; x < width; x++) {
  326. if ((b1 = qrframe[x + width * y]) == b)
  327. rlens[h]++;
  328. else
  329. rlens[++h] = 1;
  330. b = b1;
  331. bw += b ? 1 : -1;
  332. }
  333. thisbad += badruns(h);
  334. }
  335. // black/white imbalance
  336. if (bw < 0)
  337. bw = -bw;
  338. var big = bw;
  339. var count = 0;
  340. big += big << 2;
  341. big <<= 1;
  342. while (big > width * width)
  343. big -= width * width, count++;
  344. thisbad += count * N4;
  345. // Y runs
  346. for (x = 0; x < width; x++) {
  347. rlens[0] = 0;
  348. for (h = b = y = 0; y < width; y++) {
  349. if ((b1 = qrframe[x + width * y]) == b)
  350. rlens[h]++;
  351. else
  352. rlens[++h] = 1;
  353. b = b1;
  354. }
  355. thisbad += badruns(h);
  356. }
  357. return thisbad;
  358. }
  359. function genframe(instring) {
  360. var x, y, k, t, v, i, j, m;
  361. // find the smallest version that fits the string
  362. t = instring.length;
  363. version = 0;
  364. do {
  365. version++;
  366. k = (ecclevel - 1) * 4 + (version - 1) * 16;
  367. neccblk1 = eccblocks[k++];
  368. neccblk2 = eccblocks[k++];
  369. datablkw = eccblocks[k++];
  370. eccblkwid = eccblocks[k];
  371. k = datablkw * (neccblk1 + neccblk2) + neccblk2 - 3 + (version <= 9);
  372. if (t <= k)
  373. break;
  374. } while (version < 40);
  375. // FIXME - insure that it fits insted of being truncated
  376. width = 17 + 4 * version;
  377. // allocate, clear and setup data structures
  378. v = datablkw + (datablkw + eccblkwid) * (neccblk1 + neccblk2) + neccblk2;
  379. for (t = 0; t < v; t++)
  380. eccbuf[t] = 0;
  381. strinbuf = instring.slice(0);
  382. for (t = 0; t < width * width; t++)
  383. qrframe[t] = 0;
  384. for (t = 0; t < (width * (width + 1) + 1) / 2; t++)
  385. framask[t] = 0;
  386. // insert finders - black to frame, white to mask
  387. for (t = 0; t < 3; t++) {
  388. k = 0;
  389. y = 0;
  390. if (t == 1)
  391. k = (width - 7);
  392. if (t == 2)
  393. y = (width - 7);
  394. qrframe[(y + 3) + width * (k + 3)] = 1;
  395. for (x = 0; x < 6; x++) {
  396. qrframe[(y + x) + width * k] = 1;
  397. qrframe[y + width * (k + x + 1)] = 1;
  398. qrframe[(y + 6) + width * (k + x)] = 1;
  399. qrframe[(y + x + 1) + width * (k + 6)] = 1;
  400. }
  401. for (x = 1; x < 5; x++) {
  402. setmask(y + x, k + 1);
  403. setmask(y + 1, k + x + 1);
  404. setmask(y + 5, k + x);
  405. setmask(y + x + 1, k + 5);
  406. }
  407. for (x = 2; x < 4; x++) {
  408. qrframe[(y + x) + width * (k + 2)] = 1;
  409. qrframe[(y + 2) + width * (k + x + 1)] = 1;
  410. qrframe[(y + 4) + width * (k + x)] = 1;
  411. qrframe[(y + x + 1) + width * (k + 4)] = 1;
  412. }
  413. }
  414. // alignment blocks
  415. if (version > 1) {
  416. t = adelta[version];
  417. y = width - 7;
  418. for (;;) {
  419. x = width - 7;
  420. while (x > t - 3) {
  421. putalign(x, y);
  422. if (x < t)
  423. break;
  424. x -= t;
  425. }
  426. if (y <= t + 9)
  427. break;
  428. y -= t;
  429. putalign(6, y);
  430. putalign(y, 6);
  431. }
  432. }
  433. // single black
  434. qrframe[8 + width * (width - 8)] = 1;
  435. // timing gap - mask only
  436. for (y = 0; y < 7; y++) {
  437. setmask(7, y);
  438. setmask(width - 8, y);
  439. setmask(7, y + width - 7);
  440. }
  441. for (x = 0; x < 8; x++) {
  442. setmask(x, 7);
  443. setmask(x + width - 8, 7);
  444. setmask(x, width - 8);
  445. }
  446. // reserve mask-format area
  447. for (x = 0; x < 9; x++)
  448. setmask(x, 8);
  449. for (x = 0; x < 8; x++) {
  450. setmask(x + width - 8, 8);
  451. setmask(8, x);
  452. }
  453. for (y = 0; y < 7; y++)
  454. setmask(8, y + width - 7);
  455. // timing row/col
  456. for (x = 0; x < width - 14; x++)
  457. if (x & 1) {
  458. setmask(8 + x, 6);
  459. setmask(6, 8 + x);
  460. }
  461. else {
  462. qrframe[(8 + x) + width * 6] = 1;
  463. qrframe[6 + width * (8 + x)] = 1;
  464. }
  465. // version block
  466. if (version > 6) {
  467. t = vpat[version - 7];
  468. k = 17;
  469. for (x = 0; x < 6; x++)
  470. for (y = 0; y < 3; y++, k--)
  471. if (1 & (k > 11 ? version >> (k - 12) : t >> k)) {
  472. qrframe[(5 - x) + width * (2 - y + width - 11)] = 1;
  473. qrframe[(2 - y + width - 11) + width * (5 - x)] = 1;
  474. }
  475. else {
  476. setmask(5 - x, 2 - y + width - 11);
  477. setmask(2 - y + width - 11, 5 - x);
  478. }
  479. }
  480. // sync mask bits - only set above for white spaces, so add in black bits
  481. for (y = 0; y < width; y++)
  482. for (x = 0; x <= y; x++)
  483. if (qrframe[x + width * y])
  484. setmask(x, y);
  485. // convert string to bitstream
  486. // 8 bit data to QR-coded 8 bit data (numeric or alphanum, or kanji not supported)
  487. v = strinbuf.length;
  488. // string to array
  489. for (i = 0; i < v; i++)
  490. eccbuf[i] = strinbuf.charCodeAt(i);
  491. strinbuf = eccbuf.slice(0);
  492. // calculate max string length
  493. x = datablkw * (neccblk1 + neccblk2) + neccblk2;
  494. if (v >= x - 2) {
  495. v = x - 2;
  496. if (version > 9)
  497. v--;
  498. }
  499. // shift and repack to insert length prefix
  500. i = v;
  501. if (version > 9) {
  502. strinbuf[i + 2] = 0;
  503. strinbuf[i + 3] = 0;
  504. while (i--) {
  505. t = strinbuf[i];
  506. strinbuf[i + 3] |= 255 & (t << 4);
  507. strinbuf[i + 2] = t >> 4;
  508. }
  509. strinbuf[2] |= 255 & (v << 4);
  510. strinbuf[1] = v >> 4;
  511. strinbuf[0] = 0x40 | (v >> 12);
  512. } else {
  513. strinbuf[i + 1] = 0;
  514. strinbuf[i + 2] = 0;
  515. while (i--) {
  516. t = strinbuf[i];
  517. strinbuf[i + 2] |= 255 & (t << 4);
  518. strinbuf[i + 1] = t >> 4;
  519. }
  520. strinbuf[1] |= 255 & (v << 4);
  521. strinbuf[0] = 0x40 | (v >> 4);
  522. }
  523. // fill to end with pad pattern
  524. i = v + 3 - (version < 10);
  525. while (i < x) {
  526. strinbuf[i++] = 0xec;
  527. // buffer has room if (i == x) break;
  528. strinbuf[i++] = 0x11;
  529. }
  530. // calculate and append ECC
  531. // calculate generator polynomial
  532. genpoly[0] = 1;
  533. for (i = 0; i < eccblkwid; i++) {
  534. genpoly[i + 1] = 1;
  535. for (j = i; j > 0; j--)
  536. genpoly[j] = genpoly[j] ?
  537. genpoly[j - 1] ^ gexp[modnn(glog[genpoly[j]] + i)] : genpoly[j - 1];
  538. genpoly[0] = gexp[modnn(glog[genpoly[0]] + i)];
  539. }
  540. for (i = 0; i <= eccblkwid; i++)
  541. genpoly[i] = glog[genpoly[i]]; // use logs for genpoly[] to save calc step
  542. // append ecc to data buffer
  543. k = x;
  544. y = 0;
  545. for (i = 0; i < neccblk1; i++) {
  546. appendrs(y, datablkw, k, eccblkwid);
  547. y += datablkw;
  548. k += eccblkwid;
  549. }
  550. for (i = 0; i < neccblk2; i++) {
  551. appendrs(y, datablkw + 1, k, eccblkwid);
  552. y += datablkw + 1;
  553. k += eccblkwid;
  554. }
  555. // interleave blocks
  556. y = 0;
  557. for (i = 0; i < datablkw; i++) {
  558. for (j = 0; j < neccblk1; j++)
  559. eccbuf[y++] = strinbuf[i + j * datablkw];
  560. for (j = 0; j < neccblk2; j++)
  561. eccbuf[y++] = strinbuf[(neccblk1 * datablkw) + i + (j * (datablkw + 1))];
  562. }
  563. for (j = 0; j < neccblk2; j++)
  564. eccbuf[y++] = strinbuf[(neccblk1 * datablkw) + i + (j * (datablkw + 1))];
  565. for (i = 0; i < eccblkwid; i++)
  566. for (j = 0; j < neccblk1 + neccblk2; j++)
  567. eccbuf[y++] = strinbuf[x + i + j * eccblkwid];
  568. strinbuf = eccbuf;
  569. // pack bits into frame avoiding masked area.
  570. x = y = width - 1;
  571. k = v = 1; // up, minus
  572. /* inteleaved data and ecc codes */
  573. m = (datablkw + eccblkwid) * (neccblk1 + neccblk2) + neccblk2;
  574. for (i = 0; i < m; i++) {
  575. t = strinbuf[i];
  576. for (j = 0; j < 8; j++, t <<= 1) {
  577. if (0x80 & t)
  578. qrframe[x + width * y] = 1;
  579. do { // find next fill position
  580. if (v)
  581. x--;
  582. else {
  583. x++;
  584. if (k) {
  585. if (y != 0)
  586. y--;
  587. else {
  588. x -= 2;
  589. k = !k;
  590. if (x == 6) {
  591. x--;
  592. y = 9;
  593. }
  594. }
  595. } else {
  596. if (y != width - 1)
  597. y++;
  598. else {
  599. x -= 2;
  600. k = !k;
  601. if (x == 6) {
  602. x--;
  603. y -= 8;
  604. }
  605. }
  606. }
  607. }
  608. v = !v;
  609. } while (ismasked(x, y));
  610. }
  611. }
  612. // save pre-mask copy of frame
  613. strinbuf = qrframe.slice(0);
  614. t = 0; // best
  615. y = 30000; // demerit
  616. // for instead of while since in original arduino code
  617. // if an early mask was "good enough" it wouldn't try for a better one
  618. // since they get more complex and take longer.
  619. for (k = 0; k < 8; k++) {
  620. applymask(k); // returns black-white imbalance
  621. x = badcheck();
  622. if (x < y) { // current mask better than previous best?
  623. y = x;
  624. t = k;
  625. }
  626. if (t == 7)
  627. break; // don't increment i to a void redoing mask
  628. qrframe = strinbuf.slice(0); // reset for next pass
  629. }
  630. if (t != k) // redo best mask - none good enough, last wasn't t
  631. applymask(t);
  632. // add in final mask/ecclevel bytes
  633. y = fmtword[t + ((ecclevel - 1) << 3)];
  634. // low byte
  635. for (k = 0; k < 8; k++, y >>= 1)
  636. if (y & 1) {
  637. qrframe[(width - 1 - k) + width * 8] = 1;
  638. if (k < 6)
  639. qrframe[8 + width * k] = 1;
  640. else
  641. qrframe[8 + width * (k + 1)] = 1;
  642. }
  643. // high byte
  644. for (k = 0; k < 7; k++, y >>= 1)
  645. if (y & 1) {
  646. qrframe[8 + width * (width - 7 + k)] = 1;
  647. if (k)
  648. qrframe[(6 - k) + width * 8] = 1;
  649. else
  650. qrframe[7 + width * 8] = 1;
  651. }
  652. return qrframe;
  653. }
  654. var _canvas = null;
  655. var api = {
  656. get ecclevel() {
  657. return ecclevel;
  658. },
  659. set ecclevel(val) {
  660. ecclevel = val;
  661. },
  662. get size() {
  663. return _size;
  664. },
  665. set size(val) {
  666. _size = val
  667. },
  668. get canvas() {
  669. return _canvas;
  670. },
  671. set canvas(el) {
  672. _canvas = el;
  673. },
  674. getFrame: function(string) {
  675. return genframe(string);
  676. },
  677. //这里的utf16to8(str)是对Text中的字符串进行转码,让其支持中文
  678. utf16to8: function(str) {
  679. var out, i, len, c;
  680. out = "";
  681. len = str.length;
  682. for (i = 0; i < len; i++) {
  683. c = str.charCodeAt(i);
  684. if ((c >= 0x0001) && (c <= 0x007F)) {
  685. out += str.charAt(i);
  686. } else if (c > 0x07FF) {
  687. out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));
  688. out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F));
  689. out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
  690. } else {
  691. out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));
  692. out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
  693. }
  694. }
  695. return out;
  696. },
  697. /**
  698. * 新增$this参数,传入组件的this,兼容在组件中生成
  699. */
  700. draw: function(str, canvas, cavW, cavH, cavColor, haveImg, imageUrl, imageSize, $this, cb = function() {}, ecc) {
  701. var that = this;
  702. ecclevel = ecc || ecclevel;
  703. canvas = canvas || _canvas;
  704. if (!canvas) {
  705. console.warn('No canvas provided to draw QR code in!')
  706. return;
  707. }
  708. let pre_background = "#ffffff";
  709. var size = Math.min(cavW, cavH);
  710. str = that.utf16to8(str); //增加中文显示
  711. var frame = that.getFrame(str);
  712. // 组件中生成qrcode需要绑定this
  713. var ctx = uni.createCanvasContext(canvas, $this);
  714. var px = Math.round(size / (width ));
  715. var roundedSize = px * (width);
  716. // var px = 1 ;
  717. // var roundedSize = px * (width + 8) ;
  718. //var roundedSize = 0 ;
  719. //var offset = Math.floor((size - roundedSize) / 2);
  720. var offset = 0 ;
  721. size = roundedSize;
  722. //ctx.clearRect(0, 0, cavW, cavW);
  723. ctx.setFillStyle(pre_background)
  724. ctx.fillRect(0, 0, cavW, cavW);
  725. ctx.setFillStyle(cavColor);
  726. for (var i = 0; i < width; i++) {
  727. for (var j = 0; j < width; j++) {
  728. if (frame[j * width + i]) {
  729. ctx.fillRect(px * ( i) + offset, px * ( j) + offset, px, px);
  730. }
  731. }
  732. }
  733. //画图片
  734. if (haveImg) {
  735. try {
  736. var x = Number(((cavW - imageSize - 14) / 2).toFixed(2));
  737. var y = Number(((cavH - imageSize -14) / 2).toFixed(2));
  738. drawRoundedRect(ctx, x, y, imageSize, imageSize, imageSize / 2, 6, true, true)
  739. let isNetImg = false;
  740. isNetImg = imageUrl.substr(0, 4) == 'http' ? true : false;
  741. if (isNetImg) {
  742. //网络图片下载到本地
  743. uni.getImageInfo({
  744. src: imageUrl,
  745. success: function(res) {
  746. ctx.drawImage(res.path, x, y, imageSize, imageSize);
  747. //--增加绘制完成回调
  748. ctx.draw(false, function() {
  749. cb();
  750. })
  751. }
  752. })
  753. } else {
  754. ctx.drawImage(imageUrl, x, y, imageSize, imageSize);
  755. //--增加绘制完成回调
  756. ctx.draw(false, function() {
  757. cb();
  758. })
  759. }
  760. // 画圆角矩形
  761. function drawRoundedRect(ctxi, x, y, width, height, r, lineWidth, fill, stroke) {
  762. ctxi.setLineWidth(lineWidth);
  763. ctxi.setFillStyle(pre_background);
  764. ctxi.setStrokeStyle(pre_background);
  765. ctxi.beginPath(); // draw top and top right corner
  766. ctxi.moveTo(x + r, y);
  767. ctxi.arcTo(x + width, y, x + width, y + r, r); // draw right side and bottom right corner
  768. ctxi.arcTo(x + width, y + height, x + width - r, y + height, r); // draw bottom and bottom left corner
  769. ctxi.arcTo(x, y + height, x, y + height - r, r); // draw left and top left corner
  770. ctxi.arcTo(x, y, x + r, y, r);
  771. ctxi.closePath();
  772. if (fill) {
  773. ctxi.fill();
  774. }
  775. if (stroke) {
  776. ctxi.stroke();
  777. }
  778. }
  779. } catch (e) {
  780. //TODO handle the exception
  781. }
  782. } else {
  783. //--增加绘制完成回调
  784. ctx.draw(false, function() {
  785. cb();
  786. })
  787. }
  788. }
  789. }
  790. module.exports = {
  791. api
  792. }
  793. })();