qrspec.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. /*
  2. * qrencode - QR Code encoder
  3. *
  4. * QR Code specification in convenient format.
  5. * Copyright (C) 2006-2017 Kentaro Fukuchi <kentaro@fukuchi.org>
  6. *
  7. * The following data / specifications are taken from
  8. * "Two dimensional symbol -- QR-code -- Basic Specification" (JIS X0510:2004)
  9. * or
  10. * "Automatic identification and data capture techniques --
  11. * QR Code 2005 bar code symbology specification" (ISO/IEC 18004:2006)
  12. *
  13. * This library is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU Lesser General Public
  15. * License as published by the Free Software Foundation; either
  16. * version 2.1 of the License, or any later version.
  17. *
  18. * This library is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  21. * Lesser General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Lesser General Public
  24. * License along with this library; if not, write to the Free Software
  25. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  26. */
  27. #if HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <stdio.h>
  31. #include <stdlib.h>
  32. #include <string.h>
  33. #include <errno.h>
  34. #include "qrspec.h"
  35. #include "qrinput.h"
  36. /******************************************************************************
  37. * Version and capacity
  38. *****************************************************************************/
  39. typedef struct {
  40. int width; //< Edge length of the symbol
  41. int words; //< Data capacity (bytes)
  42. int remainder; //< Remainder bit (bits)
  43. int ec[4]; //< Number of ECC code (bytes)
  44. } QRspec_Capacity;
  45. /**
  46. * Table of the capacity of symbols
  47. * See Table 1 (pp.13) and Table 12-16 (pp.30-36), JIS X0510:2004.
  48. */
  49. static const QRspec_Capacity qrspecCapacity[QRSPEC_VERSION_MAX + 1] = {
  50. { 0, 0, 0, { 0, 0, 0, 0}},
  51. { 21, 26, 0, { 7, 10, 13, 17}}, // 1
  52. { 25, 44, 7, { 10, 16, 22, 28}},
  53. { 29, 70, 7, { 15, 26, 36, 44}},
  54. { 33, 100, 7, { 20, 36, 52, 64}},
  55. { 37, 134, 7, { 26, 48, 72, 88}}, // 5
  56. { 41, 172, 7, { 36, 64, 96, 112}},
  57. { 45, 196, 0, { 40, 72, 108, 130}},
  58. { 49, 242, 0, { 48, 88, 132, 156}},
  59. { 53, 292, 0, { 60, 110, 160, 192}},
  60. { 57, 346, 0, { 72, 130, 192, 224}}, //10
  61. { 61, 404, 0, { 80, 150, 224, 264}},
  62. { 65, 466, 0, { 96, 176, 260, 308}},
  63. { 69, 532, 0, { 104, 198, 288, 352}},
  64. { 73, 581, 3, { 120, 216, 320, 384}},
  65. { 77, 655, 3, { 132, 240, 360, 432}}, //15
  66. { 81, 733, 3, { 144, 280, 408, 480}},
  67. { 85, 815, 3, { 168, 308, 448, 532}},
  68. { 89, 901, 3, { 180, 338, 504, 588}},
  69. { 93, 991, 3, { 196, 364, 546, 650}},
  70. { 97, 1085, 3, { 224, 416, 600, 700}}, //20
  71. {101, 1156, 4, { 224, 442, 644, 750}},
  72. {105, 1258, 4, { 252, 476, 690, 816}},
  73. {109, 1364, 4, { 270, 504, 750, 900}},
  74. {113, 1474, 4, { 300, 560, 810, 960}},
  75. {117, 1588, 4, { 312, 588, 870, 1050}}, //25
  76. {121, 1706, 4, { 336, 644, 952, 1110}},
  77. {125, 1828, 4, { 360, 700, 1020, 1200}},
  78. {129, 1921, 3, { 390, 728, 1050, 1260}},
  79. {133, 2051, 3, { 420, 784, 1140, 1350}},
  80. {137, 2185, 3, { 450, 812, 1200, 1440}}, //30
  81. {141, 2323, 3, { 480, 868, 1290, 1530}},
  82. {145, 2465, 3, { 510, 924, 1350, 1620}},
  83. {149, 2611, 3, { 540, 980, 1440, 1710}},
  84. {153, 2761, 3, { 570, 1036, 1530, 1800}},
  85. {157, 2876, 0, { 570, 1064, 1590, 1890}}, //35
  86. {161, 3034, 0, { 600, 1120, 1680, 1980}},
  87. {165, 3196, 0, { 630, 1204, 1770, 2100}},
  88. {169, 3362, 0, { 660, 1260, 1860, 2220}},
  89. {173, 3532, 0, { 720, 1316, 1950, 2310}},
  90. {177, 3706, 0, { 750, 1372, 2040, 2430}} //40
  91. };
  92. int QRspec_getDataLength(int version, QRecLevel level)
  93. {
  94. return qrspecCapacity[version].words - qrspecCapacity[version].ec[level];
  95. }
  96. int QRspec_getECCLength(int version, QRecLevel level)
  97. {
  98. return qrspecCapacity[version].ec[level];
  99. }
  100. int QRspec_getMinimumVersion(int size, QRecLevel level)
  101. {
  102. int i;
  103. int words;
  104. for(i = 1; i <= QRSPEC_VERSION_MAX; i++) {
  105. words = qrspecCapacity[i].words - qrspecCapacity[i].ec[level];
  106. if(words >= size) return i;
  107. }
  108. return QRSPEC_VERSION_MAX;
  109. }
  110. int QRspec_getWidth(int version)
  111. {
  112. return qrspecCapacity[version].width;
  113. }
  114. int QRspec_getRemainder(int version)
  115. {
  116. return qrspecCapacity[version].remainder;
  117. }
  118. /******************************************************************************
  119. * Length indicator
  120. *****************************************************************************/
  121. static const int lengthTableBits[4][3] = {
  122. {10, 12, 14},
  123. { 9, 11, 13},
  124. { 8, 16, 16},
  125. { 8, 10, 12}
  126. };
  127. int QRspec_lengthIndicator(QRencodeMode mode, int version)
  128. {
  129. int l;
  130. if(!QRinput_isSplittableMode(mode)) return 0;
  131. if(version <= 9) {
  132. l = 0;
  133. } else if(version <= 26) {
  134. l = 1;
  135. } else {
  136. l = 2;
  137. }
  138. return lengthTableBits[mode][l];
  139. }
  140. int QRspec_maximumWords(QRencodeMode mode, int version)
  141. {
  142. int l;
  143. int bits;
  144. int words;
  145. if(!QRinput_isSplittableMode(mode)) return 0;
  146. if(version <= 9) {
  147. l = 0;
  148. } else if(version <= 26) {
  149. l = 1;
  150. } else {
  151. l = 2;
  152. }
  153. bits = lengthTableBits[mode][l];
  154. words = (1 << bits) - 1;
  155. if(mode == QR_MODE_KANJI) {
  156. words *= 2; // the number of bytes is required
  157. }
  158. return words;
  159. }
  160. /******************************************************************************
  161. * Error correction code
  162. *****************************************************************************/
  163. /**
  164. * Table of the error correction code (Reed-Solomon block)
  165. * See Table 12-16 (pp.30-36), JIS X0510:2004.
  166. */
  167. static const int eccTable[QRSPEC_VERSION_MAX+1][4][2] = {
  168. {{ 0, 0}, { 0, 0}, { 0, 0}, { 0, 0}},
  169. {{ 1, 0}, { 1, 0}, { 1, 0}, { 1, 0}}, // 1
  170. {{ 1, 0}, { 1, 0}, { 1, 0}, { 1, 0}},
  171. {{ 1, 0}, { 1, 0}, { 2, 0}, { 2, 0}},
  172. {{ 1, 0}, { 2, 0}, { 2, 0}, { 4, 0}},
  173. {{ 1, 0}, { 2, 0}, { 2, 2}, { 2, 2}}, // 5
  174. {{ 2, 0}, { 4, 0}, { 4, 0}, { 4, 0}},
  175. {{ 2, 0}, { 4, 0}, { 2, 4}, { 4, 1}},
  176. {{ 2, 0}, { 2, 2}, { 4, 2}, { 4, 2}},
  177. {{ 2, 0}, { 3, 2}, { 4, 4}, { 4, 4}},
  178. {{ 2, 2}, { 4, 1}, { 6, 2}, { 6, 2}}, //10
  179. {{ 4, 0}, { 1, 4}, { 4, 4}, { 3, 8}},
  180. {{ 2, 2}, { 6, 2}, { 4, 6}, { 7, 4}},
  181. {{ 4, 0}, { 8, 1}, { 8, 4}, {12, 4}},
  182. {{ 3, 1}, { 4, 5}, {11, 5}, {11, 5}},
  183. {{ 5, 1}, { 5, 5}, { 5, 7}, {11, 7}}, //15
  184. {{ 5, 1}, { 7, 3}, {15, 2}, { 3, 13}},
  185. {{ 1, 5}, {10, 1}, { 1, 15}, { 2, 17}},
  186. {{ 5, 1}, { 9, 4}, {17, 1}, { 2, 19}},
  187. {{ 3, 4}, { 3, 11}, {17, 4}, { 9, 16}},
  188. {{ 3, 5}, { 3, 13}, {15, 5}, {15, 10}}, //20
  189. {{ 4, 4}, {17, 0}, {17, 6}, {19, 6}},
  190. {{ 2, 7}, {17, 0}, { 7, 16}, {34, 0}},
  191. {{ 4, 5}, { 4, 14}, {11, 14}, {16, 14}},
  192. {{ 6, 4}, { 6, 14}, {11, 16}, {30, 2}},
  193. {{ 8, 4}, { 8, 13}, { 7, 22}, {22, 13}}, //25
  194. {{10, 2}, {19, 4}, {28, 6}, {33, 4}},
  195. {{ 8, 4}, {22, 3}, { 8, 26}, {12, 28}},
  196. {{ 3, 10}, { 3, 23}, { 4, 31}, {11, 31}},
  197. {{ 7, 7}, {21, 7}, { 1, 37}, {19, 26}},
  198. {{ 5, 10}, {19, 10}, {15, 25}, {23, 25}}, //30
  199. {{13, 3}, { 2, 29}, {42, 1}, {23, 28}},
  200. {{17, 0}, {10, 23}, {10, 35}, {19, 35}},
  201. {{17, 1}, {14, 21}, {29, 19}, {11, 46}},
  202. {{13, 6}, {14, 23}, {44, 7}, {59, 1}},
  203. {{12, 7}, {12, 26}, {39, 14}, {22, 41}}, //35
  204. {{ 6, 14}, { 6, 34}, {46, 10}, { 2, 64}},
  205. {{17, 4}, {29, 14}, {49, 10}, {24, 46}},
  206. {{ 4, 18}, {13, 32}, {48, 14}, {42, 32}},
  207. {{20, 4}, {40, 7}, {43, 22}, {10, 67}},
  208. {{19, 6}, {18, 31}, {34, 34}, {20, 61}},//40
  209. };
  210. void QRspec_getEccSpec(int version, QRecLevel level, int spec[5])
  211. {
  212. int b1, b2;
  213. int data, ecc;
  214. b1 = eccTable[version][level][0];
  215. b2 = eccTable[version][level][1];
  216. data = QRspec_getDataLength(version, level);
  217. ecc = QRspec_getECCLength(version, level);
  218. if(b2 == 0) {
  219. spec[0] = b1;
  220. spec[1] = data / b1;
  221. spec[2] = ecc / b1;
  222. spec[3] = spec[4] = 0;
  223. } else {
  224. spec[0] = b1;
  225. spec[1] = data / (b1 + b2);
  226. spec[2] = ecc / (b1 + b2);
  227. spec[3] = b2;
  228. spec[4] = spec[1] + 1;
  229. }
  230. }
  231. /******************************************************************************
  232. * Alignment pattern
  233. *****************************************************************************/
  234. /**
  235. * Positions of alignment patterns.
  236. * This array includes only the second and the third position of the alignment
  237. * patterns. Rest of them can be calculated from the distance between them.
  238. *
  239. * See Table 1 in Appendix E (pp.71) of JIS X0510:2004.
  240. */
  241. static const int alignmentPattern[QRSPEC_VERSION_MAX+1][2] = {
  242. { 0, 0},
  243. { 0, 0}, {18, 0}, {22, 0}, {26, 0}, {30, 0}, // 1- 5
  244. {34, 0}, {22, 38}, {24, 42}, {26, 46}, {28, 50}, // 6-10
  245. {30, 54}, {32, 58}, {34, 62}, {26, 46}, {26, 48}, //11-15
  246. {26, 50}, {30, 54}, {30, 56}, {30, 58}, {34, 62}, //16-20
  247. {28, 50}, {26, 50}, {30, 54}, {28, 54}, {32, 58}, //21-25
  248. {30, 58}, {34, 62}, {26, 50}, {30, 54}, {26, 52}, //26-30
  249. {30, 56}, {34, 60}, {30, 58}, {34, 62}, {30, 54}, //31-35
  250. {24, 50}, {28, 54}, {32, 58}, {26, 54}, {30, 58}, //35-40
  251. };
  252. /**
  253. * Put an alignment marker.
  254. * @param frame
  255. * @param width
  256. * @param ox,oy center coordinate of the pattern
  257. */
  258. static void QRspec_putAlignmentMarker(unsigned char *frame, int width, int ox, int oy)
  259. {
  260. static const unsigned char finder[] = {
  261. 0xa1, 0xa1, 0xa1, 0xa1, 0xa1,
  262. 0xa1, 0xa0, 0xa0, 0xa0, 0xa1,
  263. 0xa1, 0xa0, 0xa1, 0xa0, 0xa1,
  264. 0xa1, 0xa0, 0xa0, 0xa0, 0xa1,
  265. 0xa1, 0xa1, 0xa1, 0xa1, 0xa1,
  266. };
  267. int x, y;
  268. const unsigned char *s;
  269. frame += (oy - 2) * width + ox - 2;
  270. s = finder;
  271. for(y = 0; y < 5; y++) {
  272. for(x = 0; x < 5; x++) {
  273. frame[x] = s[x];
  274. }
  275. frame += width;
  276. s += 5;
  277. }
  278. }
  279. static void QRspec_putAlignmentPattern(int version, unsigned char *frame, int width)
  280. {
  281. int d, w, x, y, cx, cy;
  282. if(version < 2) return;
  283. d = alignmentPattern[version][1] - alignmentPattern[version][0];
  284. if(d < 0) {
  285. w = 2;
  286. } else {
  287. w = (width - alignmentPattern[version][0]) / d + 2;
  288. }
  289. if(w * w - 3 == 1) {
  290. x = alignmentPattern[version][0];
  291. y = alignmentPattern[version][0];
  292. QRspec_putAlignmentMarker(frame, width, x, y);
  293. return;
  294. }
  295. cx = alignmentPattern[version][0];
  296. for(x = 1; x < w - 1; x++) {
  297. QRspec_putAlignmentMarker(frame, width, 6, cx);
  298. QRspec_putAlignmentMarker(frame, width, cx, 6);
  299. cx += d;
  300. }
  301. cy = alignmentPattern[version][0];
  302. for(y = 0; y < w-1; y++) {
  303. cx = alignmentPattern[version][0];
  304. for(x = 0; x < w-1; x++) {
  305. QRspec_putAlignmentMarker(frame, width, cx, cy);
  306. cx += d;
  307. }
  308. cy += d;
  309. }
  310. }
  311. /******************************************************************************
  312. * Version information pattern
  313. *****************************************************************************/
  314. /**
  315. * Version information pattern (BCH coded).
  316. * See Table 1 in Appendix D (pp.68) of JIS X0510:2004.
  317. */
  318. static const unsigned int versionPattern[QRSPEC_VERSION_MAX - 6] = {
  319. 0x07c94, 0x085bc, 0x09a99, 0x0a4d3, 0x0bbf6, 0x0c762, 0x0d847, 0x0e60d,
  320. 0x0f928, 0x10b78, 0x1145d, 0x12a17, 0x13532, 0x149a6, 0x15683, 0x168c9,
  321. 0x177ec, 0x18ec4, 0x191e1, 0x1afab, 0x1b08e, 0x1cc1a, 0x1d33f, 0x1ed75,
  322. 0x1f250, 0x209d5, 0x216f0, 0x228ba, 0x2379f, 0x24b0b, 0x2542e, 0x26a64,
  323. 0x27541, 0x28c69
  324. };
  325. unsigned int QRspec_getVersionPattern(int version)
  326. {
  327. if(version < 7 || version > QRSPEC_VERSION_MAX) return 0;
  328. return versionPattern[version - 7];
  329. }
  330. /******************************************************************************
  331. * Format information
  332. *****************************************************************************/
  333. /* See calcFormatInfo in tests/test_qrspec.c */
  334. static const unsigned int formatInfo[4][8] = {
  335. {0x77c4, 0x72f3, 0x7daa, 0x789d, 0x662f, 0x6318, 0x6c41, 0x6976},
  336. {0x5412, 0x5125, 0x5e7c, 0x5b4b, 0x45f9, 0x40ce, 0x4f97, 0x4aa0},
  337. {0x355f, 0x3068, 0x3f31, 0x3a06, 0x24b4, 0x2183, 0x2eda, 0x2bed},
  338. {0x1689, 0x13be, 0x1ce7, 0x19d0, 0x0762, 0x0255, 0x0d0c, 0x083b}
  339. };
  340. unsigned int QRspec_getFormatInfo(int mask, QRecLevel level)
  341. {
  342. if(mask < 0 || mask > 7) return 0;
  343. return formatInfo[level][mask];
  344. }
  345. /******************************************************************************
  346. * Frame
  347. *****************************************************************************/
  348. /**
  349. * Put a finder pattern.
  350. * @param frame
  351. * @param width
  352. * @param ox,oy upper-left coordinate of the pattern
  353. */
  354. static void putFinderPattern(unsigned char *frame, int width, int ox, int oy)
  355. {
  356. static const unsigned char finder[] = {
  357. 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1,
  358. 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1,
  359. 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1,
  360. 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1,
  361. 0xc1, 0xc0, 0xc1, 0xc1, 0xc1, 0xc0, 0xc1,
  362. 0xc1, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc1,
  363. 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1, 0xc1,
  364. };
  365. int x, y;
  366. const unsigned char *s;
  367. frame += oy * width + ox;
  368. s = finder;
  369. for(y = 0; y < 7; y++) {
  370. for(x = 0; x < 7; x++) {
  371. frame[x] = s[x];
  372. }
  373. frame += width;
  374. s += 7;
  375. }
  376. }
  377. static unsigned char *QRspec_createFrame(int version)
  378. {
  379. unsigned char *frame, *p, *q;
  380. int width;
  381. int x, y;
  382. unsigned int verinfo, v;
  383. width = qrspecCapacity[version].width;
  384. frame = (unsigned char *)malloc((size_t)(width * width));
  385. if(frame == NULL) return NULL;
  386. memset(frame, 0, (size_t)(width * width));
  387. /* Finder pattern */
  388. putFinderPattern(frame, width, 0, 0);
  389. putFinderPattern(frame, width, width - 7, 0);
  390. putFinderPattern(frame, width, 0, width - 7);
  391. /* Separator */
  392. p = frame;
  393. q = frame + width * (width - 7);
  394. for(y = 0; y < 7; y++) {
  395. p[7] = 0xc0;
  396. p[width - 8] = 0xc0;
  397. q[7] = 0xc0;
  398. p += width;
  399. q += width;
  400. }
  401. memset(frame + width * 7, 0xc0, 8);
  402. memset(frame + width * 8 - 8, 0xc0, 8);
  403. memset(frame + width * (width - 8), 0xc0, 8);
  404. /* Mask format information area */
  405. memset(frame + width * 8, 0x84, 9);
  406. memset(frame + width * 9 - 8, 0x84, 8);
  407. p = frame + 8;
  408. for(y = 0; y < 8; y++) {
  409. *p = 0x84;
  410. p += width;
  411. }
  412. p = frame + width * (width - 7) + 8;
  413. for(y = 0; y < 7; y++) {
  414. *p = 0x84;
  415. p += width;
  416. }
  417. /* Timing pattern */
  418. p = frame + width * 6 + 8;
  419. q = frame + width * 8 + 6;
  420. for(x = 1; x < width-15; x++) {
  421. *p = 0x90 | (x & 1);
  422. *q = 0x90 | (x & 1);
  423. p++;
  424. q += width;
  425. }
  426. /* Alignment pattern */
  427. QRspec_putAlignmentPattern(version, frame, width);
  428. /* Version information */
  429. if(version >= 7) {
  430. verinfo = QRspec_getVersionPattern(version);
  431. p = frame + width * (width - 11);
  432. v = verinfo;
  433. for(x = 0; x < 6; x++) {
  434. for(y = 0; y < 3; y++) {
  435. p[width * y + x] = 0x88 | (v & 1);
  436. v = v >> 1;
  437. }
  438. }
  439. p = frame + width - 11;
  440. v = verinfo;
  441. for(y = 0; y < 6; y++) {
  442. for(x = 0; x < 3; x++) {
  443. p[x] = 0x88 | (v & 1);
  444. v = v >> 1;
  445. }
  446. p += width;
  447. }
  448. }
  449. /* and a little bit... */
  450. frame[width * (width - 8) + 8] = 0x81;
  451. return frame;
  452. }
  453. unsigned char *QRspec_newFrame(int version)
  454. {
  455. if(version < 1 || version > QRSPEC_VERSION_MAX) return NULL;
  456. return QRspec_createFrame(version);
  457. }