1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
|
-- EAN family barcode generator
--
-- Copyright (C) 2019-2022 Roberto Giacomelli
-- see LICENSE.txt file
local EAN = {
_VERSION = "ean v0.0.8",
_NAME = "ean",
_DESCRIPTION = "EAN barcode encoder",
}
EAN._id_variant = {
["13"] = true, -- EAN13
["8"] = true, -- EAN8
["5"] = true, -- EAN5 add-on
["2"] = true, -- EAN2 add-on
["13+5"] = true, -- EAN13 with EAN5 add-on
["13+2"] = true, -- EAN13 with EAN2 add-on
["8+5"] = true, -- EAN8 with EAN5 add-on
["8+2"] = true, -- EAN8 with EAN2 add-on
["isbn"] = true, -- ISBN 13 digits
["isbn+2"] = true, -- ISBN 13 digits with an EAN2 add-on
["isbn+5"] = true, -- ISBN 13 digits with an EAN2 add-on
["issn"] = true, -- ISSN 13 digits
["issn+2"] = true, -- ISSN 13 digits with an EAN2 add-on
["issn+5"] = true, -- ISSN 13 digits with an EAN2 add-on
}
EAN._codeset_seq = {-- 1 -> A, 2 -> B, 3 -> C
[0]={1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3},
{1, 1, 2, 1, 2, 2, 3, 3, 3, 3, 3, 3},
{1, 1, 2, 2, 1, 2, 3, 3, 3, 3, 3, 3},
{1, 1, 2, 2, 2, 1, 3, 3, 3, 3, 3, 3},
{1, 2, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3},
{1, 2, 2, 1, 1, 2, 3, 3, 3, 3, 3, 3},
{1, 2, 2, 2, 1, 1, 3, 3, 3, 3, 3, 3},
{1, 2, 1, 2, 1, 2, 3, 3, 3, 3, 3, 3},
{1, 2, 1, 2, 2, 1, 3, 3, 3, 3, 3, 3},
{1, 2, 2, 1, 2, 1, 3, 3, 3, 3, 3, 3},
}
EAN._codeset14_8 = 1
EAN._codeset58_8 = 3
EAN._codeset_5 = { -- check digit => structure
[0]={2, 2, 1, 1, 1}, -- 0 GGLLL
{2, 1, 2, 1, 1}, -- 1 GLGLL
{2, 1, 1, 2, 1}, -- 2 GLLGL
{2, 1, 1, 1, 2}, -- 3 GLLLG
{1, 2, 2, 1, 1}, -- 4 LGGLL
{1, 1, 2, 2, 1}, -- 5 LLGGL
{1, 1, 1, 2, 2}, -- 6 LLLGG
{1, 2, 1, 2, 1}, -- 7 LGLGL
{1, 2, 1, 1, 2}, -- 8 LGLLG
{1, 1, 2, 1, 2}, -- 9 LLGLG
}
EAN._symbol = { -- codesets A, B, and C
[1] = {[0] = 3211, 2221, 2122, 1411, 1132, 1231, 1114, 1312, 1213, 3112,},
[2] = {[0] = 1123, 1222, 2212, 1141, 2311, 1321, 4111, 2131, 3121, 2113,},
[3] = {[0] = 3211, 2221, 2122, 1411, 1132, 1231, 1114, 1312, 1213, 3112,},
}
EAN._is_first_bar = {false, false, true}
EAN._start = {111, true}
EAN._stop = {11111, false}
-- common family parameters
EAN._par_order = {
"mod",
"height",
"quietzone_left_factor",
"quietzone_right_factor",
"bars_depth_factor",
"text_enabled",
"text_ygap_factor",
"text_xgap_factor",
"text_guard_enabled",
}
EAN._par_def = {}
local pardef = EAN._par_def
-- standard module is 0.33 mm but it can vary from 0.264 to 0.66mm
pardef.mod = {
default = 0.33 * 186467, -- (mm to sp) X dimension (original value 0.33)
unit = "sp", -- scaled point
isReserved = true,
fncheck = function (_self, x, _) --> boolean, err
local mm = 186467
local min, max = 0.264 * mm, 0.660 * mm
if x < min then
return false, "[OutOfRange] too small value for mod"
elseif x > max then
return false, "[OutOfRange] too big value for mod"
end
return true, nil
end,
}
pardef.height = {
default = 22.85 * 186467, -- 22.85 mm
unit = "sp",
isReserved = false,
fncheck = function (self, h, _) --> boolean, err
if h > 0 then
return true, nil
else
return false, "[OutOfRange] non positive value for height"
end
end,
}
pardef.quietzone_left_factor = {
default = 11,
unit = "absolute-number",
isReserved = false,
fncheck = function (_self, qzf, _) --> boolean, err
if qzf > 0 then
return true, nil
else
return false, "[OutOfRange] non positive value for quietzone_left_factor"
end
end,
}
pardef.quietzone_right_factor = {
default = 7,
unit = "absolute-number",
isReserved = false,
fncheck = function (_self, qzf, _) --> boolean, err
if qzf > 0 then
return true, nil
else
return false, "[OutOfRange] non positive value for quietzone_right_factor"
end
end,
}
pardef.bars_depth_factor = {
default = 5,
unit = "absolute-number",
isReserved = false,
fncheck = function (_self, b, _) --> boolean, err
if b >= 0 then
return true, nil
else
return false, "[OutOfRange] non positive value for bars_depth_factor"
end
end,
}
-- enable/disable human readble text
pardef.text_enabled = { -- boolean type
default = true,
isReserved = false,
fncheck = function (_self, flag, _) --> boolean, err
if type(flag) == "boolean" then
return true, nil
else
return false, "[TypeErr] not a boolean value for text_enabled"
end
end,
}
pardef.text_ygap_factor = {
default = 1.0,
unit = "absolute-number",
isReserved = false,
fncheck = function (_self, t, _) --> boolean, err
if t >= 0 then
return true, nil
else
return false, "[OutOfRange] non positive value for text_ygap_factor"
end
end,
}
pardef.text_xgap_factor = {
default = 0.75,
unit = "absolute-number",
isReserved = false,
fncheck = function (_self, t, _) --> boolean, err
if t >= 0 then
return true, nil
else
return false, "[OutOfRange] non positive value for text_xgap_factor"
end
end,
}
pardef.text_guard_enabled = { -- boolean type
default = false,
isReserved = false,
fncheck = function (_self, flag, _) --> boolean, err
if type(flag) == "boolean" then
return true, nil
else
return false, "[TypeErr] not a boolean value for text_guard_enabled"
end
end,
}
EAN._par_def_8 = {} -- ean8 substitute parameters
local pardef8 = EAN._par_def_8
pardef8.quietzone_left_factor = pardef.quietzone_right_factor
EAN._par_def_5 = {} -- ean5 add-on substitute parameters
local pardef5 = EAN._par_def_5
pardef5.quietzone_left_factor = pardef.quietzone_right_factor
EAN._par_def_2 = {} -- ean2 add-on substitute parameters
local pardef2 = EAN._par_def_2
pardef2.quietzone_left_factor = pardef.quietzone_right_factor
-- variant parameters
EAN._par_variant_order = {
["13"] = {}, -- EAN13
["8"] = {}, -- EAN8
["5"] = {}, -- add-on EAN5
["2"] = {}, -- add-on EAN2
["isbn"] = { -- ISBN 13 digits
"text_isbn_enabled",
"text_isbn_ygap_factor",
},
["13+5"] = {"addon_xgap_factor",}, -- EAN13 with EAN5 add-on
["13+2"] = {"addon_xgap_factor",}, -- EAN13 with EAN2 add-on
["8+5"] = {"addon_xgap_factor",}, -- EAN8 with EAN5 add-on
["8+2"] = {"addon_xgap_factor",}, -- EAN8 with EAN2 add-on
["isbn+2"] = { -- ISBN 13 digits with an EAN2 add-on
"text_isbn_enabled",
"text_isbn_ygap_factor",
"addon_xgap_factor",
},
["isbn+5"] = { -- ISBN 13 digits with an EAN2 add-on
"text_isbn_enabled",
"text_isbn_ygap_factor",
"addon_xgap_factor",
},
["issn"] = { -- ISSN 13 digits, International Standard Serial Number
"text_issn_enabled",
"text_issn_ygap_factor",
},
["issn+2"] = { -- ISSN 13 digits with an EAN2 add-on
"text_issn_enabled",
"text_issn_ygap_factor",
"addon_xgap_factor",
},
["issn+5"] = { -- ISSN 13 digits with an EAN2 add-on
"text_issn_enabled",
"text_issn_ygap_factor",
"addon_xgap_factor",
},
}
EAN._par_def_variant = {
["13"] = {}, -- EAN13
["8"] = {}, -- EAN8
["5"] = {}, -- add-on EAN5
["2"] = {}, -- add-on EAN2
["13+5"] = {}, -- EAN13 with EAN5 add-on
["13+2"] = {}, -- EAN13 with EAN2 add-on
["8+5"] = {}, -- EAN8 with EAN5 add-on
["8+2"] = {}, -- EAN8 with EAN2 add-on
-- ISBN
["isbn"] = {}, -- ISBN 13 digits
["isbn+2"] = {}, -- ISBN 13 digits with an EAN2 add-on
["isbn+5"] = {}, -- ISBN 13 digits with an EAN2 add-on
-- ISSN
["issn"] = {}, -- ISBN 13 digits
["issn+2"] = {}, -- ISBN 13 digits with an EAN2 add-on
["issn+5"] = {}, -- ISBN 13 digits with an EAN2 add-on
}
local par_def_var = EAN._par_def_variant
-- EAN ISBN/ISSN/13/8 + add-on parameters
local addon_xgap_factor = {-- distance between main and add-on symbol
default = 10,
unit = "absolute-number",
isReserved = false,
fncheck = function (_self, t, _) --> boolean, err
if t >= 7 then
return true, nil
else
return false, "[OutOfRange] not positive value for xgap_factor"
end
end,
}
par_def_var["13+5"].addon_xgap_factor = addon_xgap_factor
par_def_var["13+2"].addon_xgap_factor = addon_xgap_factor
par_def_var["8+5"].addon_xgap_factor = addon_xgap_factor
par_def_var["8+2"].addon_xgap_factor = addon_xgap_factor
-- ISBN
par_def_var["isbn+5"].addon_xgap_factor = addon_xgap_factor
par_def_var["isbn+2"].addon_xgap_factor = addon_xgap_factor
-- ISSN
par_def_var["issn+5"].addon_xgap_factor = addon_xgap_factor
par_def_var["issn+2"].addon_xgap_factor = addon_xgap_factor
-- text_ISBN_* parameter
-- enable/disable a text ISBN label upon the barcode symbol
-- if it is "auto" the isbn text appears or not and depends by input code
local isbn_text_enabled = { -- boolean type
default = "auto",
isReserved = false,
fncheck = function (_self, flag, _) --> boolean, err
if type(flag) == "boolean" or
(type(flag) == "string" and flag == "auto") then
return true, nil
else
return false, "[TypeErr] not a boolean or 'auto' for text_isbn_enabled"
end
end,
}
-- ISBN
par_def_var["isbn+5"].text_isbn_enabled = isbn_text_enabled
par_def_var["isbn+2"].text_isbn_enabled = isbn_text_enabled
par_def_var["isbn"].text_isbn_enabled = isbn_text_enabled
-- text_ISSN_* parameter
-- enable/disable a text ISBN label upon the barcode symbol
-- if it is "auto" the isbn/issn text appears or not and depends by input code
local issn_text_enabled = { -- boolean type
default = true,
isReserved = false,
fncheck = function (_self, flag, _) --> boolean, err
if type(flag) == "boolean" then
return true, nil
else
return false, "[TypeErr] not a boolean value for text_issn_enabled"
end
end,
}
-- ISSN
par_def_var["issn+5"].text_issn_enabled = issn_text_enabled
par_def_var["issn+2"].text_issn_enabled = issn_text_enabled
par_def_var["issn"].text_issn_enabled = issn_text_enabled
-- ISBN text vertical distance
local text_ygap_factor = {
default = 2.0,
unit = "absolute-number",
isReserved = false,
fncheck = function (_self, t, _) --> boolean, err
if t >= 0 then
return true, nil
else
return false, "[OutOfRange] non positive value for text_isbn_ygap_factor"
end
end,
}
-- ISBN
par_def_var["isbn+5"].text_isbn_ygap_factor = text_ygap_factor
par_def_var["isbn+2"].text_isbn_ygap_factor = text_ygap_factor
par_def_var["isbn"].text_isbn_ygap_factor = text_ygap_factor
-- ISSN
par_def_var["issn+5"].text_issn_ygap_factor = text_ygap_factor
par_def_var["issn+2"].text_issn_ygap_factor = text_ygap_factor
par_def_var["issn"].text_issn_ygap_factor = text_ygap_factor
-- configuration functions
-- utility for generic configuration of full symbol, add-on included
-- n1 length of main symbol, 8 or 13
-- n2 length of add-on symbol, 2 or 5
local function config_full(ean, n1, n2)
local i1 = tostring(n1)
local fn_1 = assert(ean._config_variant[i1])
fn_1(ean)
local i2 = tostring(n2)
local fn_2 = assert(ean._config_variant[i2])
fn_2(ean)
ean._main_len = n1
ean._addon_len = n2
ean._is_last_checksum = true
end
local config_variant = {
["13"] = function (ean13)
ean13._main_len = 13
ean13._is_last_checksum = true
local Vbar = ean13._libgeo.Vbar -- Vbar class
local Vbar_archive = ean13._libgeo.Archive -- Archive class
local Codeset = Vbar_archive:new()
ean13._13_codeset_vbar = Codeset
local mod = ean13.mod
local stop = ean13._stop
local start = ean13._start
Codeset:insert(Vbar:from_int(start[1], mod, start[2]), "start_stop")
Codeset:insert(Vbar:from_int(stop[1], mod, stop[2]), "central")
for i_cs, codetab in ipairs(ean13._symbol) do
local isbar = ean13._is_first_bar[i_cs]
for i = 0, 9 do
Codeset:insert(Vbar:from_int(codetab[i], mod, isbar), i_cs, i)
end
end
end,
["8"] = function (ean8)
ean8._main_len = 8
ean8._is_last_checksum = true
local Vbar = ean8._libgeo.Vbar
local Vbar_archive = ean8._libgeo.Archive
local start = ean8._start
local stop = ean8._stop
local mod = ean8.mod
local Codeset = Vbar_archive:new()
ean8._8_codeset_vbar = Codeset
Codeset:insert(Vbar:from_int(start[1], mod, start[2]), "start_stop")
Codeset:insert(Vbar:from_int(stop[1], mod, stop[2]), "central")
for k = 1, 3, 2 do -- only codeset A and C (k == 1, 3)
local codetab = ean8._symbol[k]
local isbar = ean8._is_first_bar[k]
for i = 0, 9 do
Codeset:insert(Vbar:from_int(codetab[i], mod, isbar), k, i)
end
end
end,
["5"] = function (ean5) -- add-on EAN5
ean5._main_len = 5
ean5._is_last_checksum = false
local mod = ean5.mod
local Vbar = ean5._libgeo.Vbar
local Vbar_archive = ean5._libgeo.Archive
local Codeset = Vbar_archive:new()
Codeset:insert(Vbar:from_int(112, mod, true), "start")
Codeset:insert(Vbar:from_int(11, mod, false), "sep")
ean5._5_codeset_vbar = Codeset
local symbols = ean5._symbol
for c = 1, 2 do
for i = 0, 9 do
Codeset:insert(Vbar:from_int(symbols[c][i], mod, false), c, i)
end
end
end,
["2"] = function (ean2) -- add-on EAN2
ean2._main_len = 2
ean2._is_last_checksum = false
local mod = ean2.mod
local Vbar = ean2._libgeo.Vbar
local Vbar_archive = ean2._libgeo.Archive
local Codeset = Vbar_archive:new()
ean2._2_codeset_vbar = Codeset
Codeset:insert(Vbar:from_int(112, mod, true), "start")
Codeset:insert(Vbar:from_int(11, mod, false), "sep")
local symbols = ean2._symbol
for c = 1, 2 do
for i = 0, 9 do
Codeset:insert(Vbar:from_int(symbols[c][i], mod, false), c, i)
end
end
end,
["13+5"] = function (ean, Vbar, mod) -- EAN13 with EAN5 add-on
config_full(ean, 13, 5)
end,
["13+2"] = function(ean, Vbar, mod) -- EAN13 with EAN2 add-on
config_full(ean, 13, 2)
end,
["8+5"] = function(ean, Vbar, mod) -- EAN8 with EAN5 add-on
config_full(ean, 8, 5)
end,
["8+2"] = function(ean, Vbar, mod) -- EAN8 with EAN2 add-on
config_full(ean, 8, 2)
end,
}
-- ISBN
config_variant["isbn"] = config_variant["13"]
config_variant["isbn+2"] = config_variant["13+2"]
config_variant["isbn+5"] = config_variant["13+5"]
-- ISSN
config_variant["issn"] = config_variant["13"]
config_variant["issn+2"] = config_variant["13+2"]
config_variant["issn+5"] = config_variant["13+5"]
EAN._config_variant = config_variant
-- utility function
-- the checksum of EAN8 or EAN13 code
-- 'data' is an array of digits
local function checksum_8_13(data, stop_index) --> checksum
local s1 = 0; for i = 2, stop_index, 2 do
s1 = s1 + data[i]
end
local s2 = 0; for i = 1, stop_index, 2 do
s2 = s2 + data[i]
end
local sum; if stop_index % 2 == 0 then
sum = 3 * s1 + s2
else
sum = s1 + 3 * s2
end
return (10 - (sum % 10)) % 10
end
-- return the checksum digit of an EAN 5 or EAN 2 add-on
-- this digits will not be part of the code
-- 'data' is an array of digits
-- i is the index where the code starts
-- len is the length of the code
local function checksum_5_2(data, i, len) --> checksum digit or nil
if len == 5 then -- EAN 5 add-on
local c1 = data[i] + data[i + 2] + data[i + 4]
local c2 = data[i + 1] + data[i + 3]
local ck = 3 * c1 + 9 * c2
return ck % 10
elseif len == 2 then -- EAN 2 add-on
local ck = 10 * data[i] + data[i + 1]
return ck % 4
end
end
-- ISBN utility function
-- return the ISBN 10 digits checksum
local function isbn_checksum(isbn)
local sum = 0
for w = 1, 9 do
sum = sum + w * isbn[w]
end
return sum % 11
end
local function isbn_parse_state() --> parse state
return {
is_space = false,
is_dash = false,
isbn_len = 0,
}
end
-- group char for readibility '-' or ' '
-- char won't be inserted in the top isbn code
local function isbn_process_char(_, c, parse_state) --> elem_code, elem_text, err
local isbn_len = parse_state.isbn_len
if c == "-" then
if isbn_len == 0 then
return nil, nil, "[ArgErr] an initial dash is not allowed"
end
if parse_state.is_dash then
return nil, nil, "[ArgErr] found two consecutive dash"
end
parse_state.is_dash = true
return nil, c, nil
elseif c == " " then
if isbn_len == 0 then
return nil, nil, "[ArgErr] an initial space is not allowed"
end
if parse_state.is_space then
return nil, nil, nil
else
parse_state.is_space = true
return nil, c, nil
end
elseif c == "X" then -- ISBN-10 checksum for 10
isbn_len = isbn_len + 1
parse_state.isbn_len = isbn_len
if isbn_len ~= 10 then
return nil, nil, "[ArgErr] found a checksum 'X' in a wrong position"
end
return 10, c, nil
else -- c is at this point eventually a digit
local n = string.byte(c) - 48
if n < 0 or n > 9 then
return nil, nil, "[ArgErr] found a not digit or a not group char"
end
if parse_state.is_dash then -- close a group
parse_state.is_dash = false
parse_state.is_space = false
elseif parse_state.is_space then
parse_state.is_space = false
end
isbn_len = isbn_len + 1
parse_state.isbn_len = isbn_len
return n, c, nil
end
end
-- overriding function called every time an input ISBN code has been completely
-- parsed
local function isbn_finalize(enc, parse_state) --> ok, err
local var = enc._variant
local code_data = enc._code_data
local code_len = #code_data
local isbn_len = parse_state.isbn_len
local l1, l2
if var == "isbn" then
if isbn_len == 10 then
l1 = 10
elseif isbn_len == 13 then
l1 = 13
else
return false, "[ArgErr] wrong ISBN code length of "..isbn_len
end
assert(l1 == code_len)
elseif var == "isbn+5" then
assert(enc._addon_len == 5)
if isbn_len == 15 then
l1, l2 = 10, 5
elseif isbn_len == 18 then
l1, l2 = 13, 5
else
return false, "[ArgErr] wrong ISBN+5 code length of "..isbn_len
end
assert(l1 + l2 == code_len)
elseif var == "isbn+2" then
assert(enc._addon_len == 2)
if isbn_len == 12 then
l1, l2 = 10, 2
elseif isbn_len == 15 then
l1, l2 = 13, 2
else
return false, "[ArgErr] wrong ISBN+2 code length of "..isbn_len
end
assert(l1 + l2 == code_len)
else
error("[InternalErr] unexpected ISBN variant code")
end
local isbn_auto = false
if l1 == 10 then -- isbn 10 to 13 conversion
local ck = isbn_checksum(code_data)
if ck ~= code_data[10] then
return false, "[ArgErr] unmatched ISBN 10 checksum"
end
for i = l1 + (l2 or 0), 1, -1 do -- code_data sliding
code_data[i + 3] = code_data[i]
end
code_data[1] = 9
code_data[2] = 7
code_data[3] = 8
code_data[13] = checksum_8_13(code_data, 12)
isbn_auto = true
else
local ck = checksum_8_13(code_data, 12)
if code_data[13] ~= ck then
return false, "[ArgErr] unmatched ISBN 13 checksum"
end
end
local isbncode = enc._code_text
if l2 then -- nils the add-on digits
local i = #isbncode
while l2 > 0 do
local c = isbncode[i]
isbncode[i] = nil
i = i - 1
if not (c == " " or c == "-") then
l2 = l2 - 1
end
end
local c = isbncode[i]
if c == " " or c == "-" then isbncode[i] = nil end
end
-- check group number
local g = 0
for _, c in ipairs(isbncode) do
if c == "-" or c == " " then
g = g + 1
end
end
if g > 4 then
return false, "[ArgErr] too many groups found in the ISBN code"
end
if g > 0 then isbn_auto = true end
enc._isbntxt_on = isbn_auto
return true, nil
end
-- ISSN utility fucntion
-- return the ISSN checksum
local function issn_checksum(issn)
local sum = 0
for i = 1, 7 do
sum = sum + (9 - i) * issn[i]
end
local r = sum % 11
if r == 0 then
return 0
else
return 11 - r
end
end
local function to_n(c) --> n, err
local n = string.byte(c) - 48
if n < 0 or n > 9 then
return nil, true
end
return n, false
end
local function issn_parse_state()
return {
is_dash = false,
is_group_open = false,
is_group_close = false,
ed_var_len = 0,
ed_var_arr = {},
code_len = 0,
addon_len = 0,
}
end
-- ISSN dddd-dddx[dd] or 13-long array
-- spaces is always ignored
local function issn_process_char(enc, c, parse_state) --> e_data, e_txt, err
local addon_len = enc._addon_len
-- `edition variant` input code part
if c == " " then
return nil, nil, nil -- ignore all spaces
end
if parse_state.is_group_close then
if addon_len then
if parse_state.addon_len == enc._addon_len then
return nil, nil, "[ArgErr] too many chars in the ISSN input code"
end
local n, e = to_n(c)
if e then
return nil, nil, "[ArgErr] non digit char after an edition variant group"
end
parse_state.addon_len = parse_state.addon_len + 1
return n, n, nil
else
return nil, nil, "[ArgErr] too many chars in the ISSN input code"
end
end
-- code part
if c == "-" then
if parse_state.is_dash then
return nil, nil, "[ArgErr] two or more dash chars in the input code"
end
if parse_state.code_len ~= 4 then
return nil, nil, "[ArgErr] incorrect position for a dash sign"
end
parse_state.is_dash = true
return nil, c, nil
elseif c == "[" then -- two digits edition variant group opening
if parse_state.code_len ~= 8 then
return nil, nil, "[ArgErr] not a 8-digits long code for the ISSN input"
end
parse_state.is_group_open = true
return nil, nil, nil
elseif c == "]" then -- two digits edition variant closing
if not parse_state.is_group_open then
return nil, nil, "[ArgErr] found a ']' without an opened '['"
end
if parse_state.ed_var_len ~= 2 then
return nil, nil, "[ArgErr] edition variant group must be two digits long"
end
parse_state.is_group_open = false
parse_state.is_group_close = true
return nil, nil, nil
elseif c == "X" then -- 8th ISSN checksum digit
if parse_state.code_len ~= 7 then
return nil, nil, "[ArgErr] incorrect position for checksum digit 'X'"
end
parse_state.code_len = 8
return 10, c, nil
else -- at this point 'c' may be only a digit
local n, e = to_n(c)
if e then
return nil, nil, "[ArgErr] found a non digit in code part"
end
if parse_state.is_group_open then
if parse_state.ed_var_len == 2 then
return nil, nil, "[ArgErr] group digits are more than two"
end
parse_state.ed_var_len = parse_state.ed_var_len + 1
local t = parse_state.ed_var_arr
t[#t + 1] = n
return nil, c, nil
end
if parse_state.is_dash then
if addon_len then
if parse_state.code_len < 8 then
parse_state.code_len = parse_state.code_len + 1
else
if parse_state.addon_len == addon_len then
return nil, nil, "[ArgErr] too many digits for a 8 + "..addon_len.." ISSN input code"
end
parse_state.addon_len = parse_state.addon_len + 1
end
else
if parse_state.code_len == 8 then
return nil, nil, "[ArgErr] too many digits found for a 8 digits long ISSN input code"
end
parse_state.code_len = parse_state.code_len + 1
end
else
if addon_len then
if parse_state.code_len == (13 + addon_len) then
return nil, nil, "[ArgErr] too many digits in ISSN input code"
end
else
if parse_state.code_len == 13 then
return nil, nil, "[ArgErr] too many digits in a 13 digits long ISSN input code"
end
end
parse_state.code_len = parse_state.code_len + 1
end
return n, n, nil
end
end
-- translate an ISSN 8 in an EAN 13
local function issn8_to_13(issn, ed_var_1, ed_var_2) --> i13, i8, err
local r13, r8 = {9, 7, 7}, {}
for i = 1, 7 do
r8[i] = issn[i]
r13[i + 3] = issn[i]
end
local issn_cs = issn_checksum(r8)
if issn_cs ~= issn[8] then
return nil, nil, "[Err] unmatch ISSN 8 checksum"
end
for i = 1, 7 do
r8[i] = string.char(r8[i] + 48)
end
if issn_cs == 10 then
r8[8] = "X"
else
r8[8] = string.char(issn_cs + 48)
end
r13[11] = ed_var_1
r13[12] = ed_var_2
r13[13] = checksum_8_13(r13, 12)
return r13, r8, nil
end
-- translate an EAN 13 to an ISSN 8 input code
local function ean13_to_issn8(ean)
local res = {}
for i = 4, 10 do
res[i - 3] = ean[i]
end
local issn_cs = issn_checksum(res)
for i = 1, 7 do
res[i] = string.char(res[i] + 48)
end
if issn_cs == 10 then
res[8] = "X"
else
res[8] = string.char(issn_cs + 48)
end
return res
end
-- finalize the ISSN input code
-- new field 'enc._issn_is_short_input' -- the input code was 8 digits long
-- new filed 'enc._issn_is_dash' -- the 8 digits long input code contained a dash
local function issn_finalize(enc, parse_state) --> ok, err
if parse_state.is_group_open then
return false, "[ArgErr] unclosed edition variant group in ISSN input code"
end
local data = enc._code_data
local code_len = #data
local addon_len = enc._addon_len
local main_len = code_len - (addon_len or 0)
if main_len == 8 then
-- make the 8 long array for human readable text
local ev1, ev2 = 0, 0
if parse_state.ed_var_len > 0 then
local edvar = parse_state.ed_var_arr
ev1, ev2 = edvar[1], edvar[2]
end
local issn13, issn8, err = issn8_to_13(data, ev1, ev2)
if err then return false, err end
if addon_len then
for i = 9, 9 + addon_len do
issn13[i + 5] = data[i] -- save addon digits
end
end
enc._code_data = issn13
enc._code_text = issn8
enc._issn_is_short_input = true
enc._issn_is_dash = parse_state.is_dash
elseif main_len == 13 then
local ck = checksum_8_13(data, 12) -- check EAN checksum
if ck ~= data[13] then
return false, "[Err] wrong checksum digit"
end
-- make 8 long array for human readable text
enc._code_text = ean13_to_issn8(data)
enc._issn_is_short_input = false
else
return nil, "[ArgErr] incorrect digits number of "..main_len.." in input ISSN code"
end
return true, nil
end
-- finalize for basic encoder
local function basic_finalize(enc) --> ok, err
local l1 = enc._main_len
local l2 = enc._addon_len
local ok_len = l1 + (l2 or 0)
local data = enc._code_data
local symb_len = #data
if symb_len ~= ok_len then
return false, "[ArgErr] not a "..ok_len.."-digit long array"
end
if enc._is_last_checksum then -- is the last digit ok?
local ck = checksum_8_13(data, l1 - 1)
if ck ~= data[l1] then
return false, "[Err] wrong checksum digit"
end
end
return true, nil
end
-- config function called at the moment of encoder construction
-- create all the possible VBar object
function EAN:_config() --> ok, err
local variant = self._variant
if not variant then
return false, "[Err] variant is mandatory for the EAN family"
end
local plus = variant:find("+")
local v1
if plus then
v1 = variant:sub(1, plus - 1)
self._sub_variant_1 = v1
self._sub_variant_2 = variant:sub(plus + 1)
else
v1 = variant
self._sub_variant_1 = v1
end
local fnconfig = self._config_variant[variant]
fnconfig(self)
if v1 == "isbn" then
self._process_char = isbn_process_char
self._init_parse_state = isbn_parse_state
elseif v1 == "issn" then
self._process_char = issn_process_char
self._init_parse_state = issn_parse_state
end
return true, nil
end
-- internal methods for Barcode costructors
-- function called every time an input EAN code has been completely parsed
function EAN:_finalize(parse_state) --> ok, err
local v1 = self._sub_variant_1
if v1 == "isbn" then
return isbn_finalize(self, parse_state) --> ok, err
elseif v1 == "issn" then
return issn_finalize(self, parse_state) --> ok, err
else
return basic_finalize(self) --> ok, err
end
end
-- public methods
-- return the checksum digit of the argument or an error
-- respect to the encoder variant EAN8 or EAN13
-- 'n' can be an integer, a string of digits or an array of digits
function EAN:checksum(n) --> n, err
local arr;
if type(n) == "number" then
if n <= 0 then
return nil, "[ArgErr] number must be a positive integer"
end
if n - math.floor(n) > 0 then
return nil, "[ArgErr] 'n' argument is not an integer"
end
arr = {}
local i = 0
while n > 0 do
i = i + 1
arr[i] = n % 10
n = math.floor((n - arr[i]) / 10)
end
-- array reversing
local len = #arr + 1
for k = 1, #arr/2 do
local dt = arr[k]
arr[k] = arr[len - k]
arr[len - k] = dt
end
elseif type(n) == "table" then
if not #n > 0 then return nil, "[ArgErr] empty array" end
for _, d in ipairs(n) do
if type(d) ~= "number" then
return nil, "[ArgErr] array 'n' contains a not digit element"
end
if d < 0 or d > 9 then
return nil, "[ArgErr] array contains a not digit number"
end
end
arr = n
elseif type(n) == "string" then
arr = {}
for c in string.gmatch(n, ".") do
local d = tonumber(c)
if (not d) or d > 9 then
return nil, "[ArgErr] 's' contains a not digit char"
end
arr[#arr + 1] = d
end
else
return nil, "[ArgErr] not a number, a string or an array of digits"
end
local i = #arr
if i == 7 or i == 8 then
return checksum_8_13(arr, 7)
elseif i == 12 or i == 13 then
return checksum_8_13(arr, 12)
else
return nil, "[Err] unsuitable data length for EAN8 or EAN13 checksum"
end
end
-- drawing functions
EAN._append_ga_variant = {}
local fn_append_ga_variant = EAN._append_ga_variant
-- draw EAN13 symbol
fn_append_ga_variant["13"] = function (ean, canvas, tx, ty, ax, ay)
local Codeset = ean._13_codeset_vbar
local mod = ean.mod
local queue_0 = assert(Codeset:get("start_stop")) +
42*mod +
assert(Codeset:get("central")) +
42*mod +
assert(Codeset:get("start_stop"))
local code = ean._code_data
local code_seq = ean._codeset_seq[code[1]]
local queue_1 = ean._libgeo.Vbar_queue:new()
for i = 2, 7 do
queue_1 = queue_1 + assert(Codeset:get(code_seq[i-1], code[i]))
end
queue_1 = queue_1 + 5*mod
for i = 8, 13 do
queue_1 = queue_1 + assert(Codeset:get(code_seq[i-1], code[i]))
end
local bars_depth = mod * ean.bars_depth_factor
local w, h = 95*mod, ean.height + bars_depth
local x0 = tx - ax * w
local y0 = ty - ay * h
local x1 = x0 + w
local y1 = y0 + h
local ys = y0 + bars_depth
-- draw the symbol
assert(canvas:encode_disable_bbox())
assert(canvas:encode_vbar_queue(queue_0, x0, y0, y1))
assert(canvas:encode_vbar_queue(queue_1, x0 + 3*mod, ys, y1))
-- bounding box set up
local qzl = ean.quietzone_left_factor * mod
local qzr = ean.quietzone_right_factor * mod
assert(canvas:encode_set_bbox(x0 - qzl, y0, x1 + qzr, y1))
assert(canvas:encode_enable_bbox())
if ean.text_enabled then -- human readable text
local Text = ean._libgeo.Text
local txt_1 = Text:from_digit_array(code, 1, 1)
local txt_2 = Text:from_digit_array(code, 2, 7)
local txt_3 = Text:from_digit_array(code, 8, 13)
local y_bl = ys - ean.text_ygap_factor * mod
local mx = ean.text_xgap_factor
assert(canvas:encode_Text(txt_1, x0 - qzl, y_bl, 0, 1))
local x2_1 = x0 + (3+mx)*mod
local x2_2 = x0 + (46-mx)*mod
assert(canvas:encode_Text_xwidth(txt_2, x2_1, x2_2, y_bl, 1))
local x3_1 = x0 + (49+mx)*mod
local x3_2 = x0 + (92-mx)*mod
assert(canvas:encode_Text_xwidth(txt_3, x3_1, x3_2, y_bl, 1))
if ean.text_guard_enabled and (not ean._addon_len) then
local Polyline = ean._libgeo.Polyline
local mm = 186467.98
local alpha = 36 * math.pi/180
local pw = 0.30*mm
local dx = pw/(2*math.sin(alpha))
local dy = (pw/2) * math.cos(alpha)
local px = x1 + qzr - dx
local pb = 1.55*mm
local ph = pb * math.tan(alpha)
local p = Polyline:new()
p:add_point(px - pb, y_bl - 2*ph - dy)
p:add_point(px, y_bl - ph - dy)
p:add_point(px - pb, y_bl - dy)
assert(canvas:encode_linewidth(pw))
assert(canvas:encode_polyline(p))
end
local istxt = false
if ean.text_isbn_enabled then
if ean.text_isbn_enabled == "auto" then
if ean._isbntxt_on == true then
istxt = true
end
else
istxt = true
end
end
if istxt then
local isbn = assert(ean._code_text, "[InternalErr] ISBN text not found")
local descr = {"I", "S", "B", "N", " ",}
for _, d in ipairs(isbn) do
descr[#descr + 1] = d
end
local isbn_txt = Text:from_chars(descr)
local x_isbn = x0 + 47.5 * mod
local y_isbn = y1 + ean.text_isbn_ygap_factor * mod
assert(canvas:encode_Text(isbn_txt, x_isbn, y_isbn, 0.5, 0))
end
-- issn text
if ean.text_issn_enabled then
local hri = {"I", "S", "S", "N", " "}
local txt = assert(ean._code_text, "[InternalErr] _code_text not found")
for i = 1, 4 do
hri[i + 5] = txt[i]
end
hri[10] = "-"
for i = 5, 8 do
hri[i + 6] = txt[i]
end
local issn_txt = Text:from_chars(hri)
local x_issn = x0 + 47.5 * mod
local y_issn = y1 + ean.text_issn_ygap_factor * mod
assert(canvas:encode_Text(issn_txt, x_issn, y_issn, 0.5, 0))
end
end
return {x0, y0, x1, y1, qzl, nil, qzr, nil,}
end
-- draw EAN8 symbol
fn_append_ga_variant["8"] = function (ean, canvas, tx, ty, ax, ay)
local Codeset = ean._8_codeset_vbar
local mod = ean.mod
local q0 = assert(Codeset:get("start_stop")) + 28*mod +
assert(Codeset:get("central")) + 28*mod +
assert(Codeset:get("start_stop"))
local code = ean._code_data
local cs14 = ean._codeset14_8
local q1 = ean._libgeo.Vbar_queue:new()
for i = 1, 4 do
q1 = q1 + assert(Codeset:get(cs14, code[i]))
end
q1 = q1 + 5*mod
local cs58 = ean._codeset58_8
for i = 5, 8 do
q1 = q1 + assert(Codeset:get(cs58, code[i]))
end
local bars_depth = mod * ean.bars_depth_factor
local w, h = 67*mod, ean.height + bars_depth
local x0 = tx - ax * w
local y0 = ty - ay * h
local x1 = x0 + w
local y1 = y0 + h
local ys = y0 + bars_depth
-- draw the symbol
assert(canvas:encode_disable_bbox())
assert(canvas:encode_vbar_queue(q0, x0, y0, y1))
assert(canvas:encode_vbar_queue(q1, x0 + 3*mod, ys, y1))
-- bounding box set up
local qzl = ean.quietzone_left_factor * mod
local qzr = ean.quietzone_right_factor * mod
assert(canvas:encode_set_bbox(x0 - qzl, y0, x1 + qzr, y1))
assert(canvas:encode_enable_bbox())
if ean.text_enabled then -- human readable text
local Text = ean._libgeo.Text
local t_1 = Text:from_digit_array(code, 1, 4)
local t_2 = Text:from_digit_array(code, 5, 8)
local y_bl = ys - ean.text_ygap_factor * mod
local mx = ean.text_xgap_factor
local x1_1 = x0 + ( 3 + mx)*mod
local x1_2 = x0 + (32 - mx)*mod
assert(canvas:encode_Text_xwidth(t_1, x1_1, x1_2, y_bl, 1))
local x2_1 = x0 + (35+mx)*mod
local x2_2 = x0 + (64-mx)*mod
assert(canvas:encode_Text_xwidth(t_2, x2_1, x2_2, y_bl, 1))
if ean.text_guard_enabled and (not ean._addon_len) then
local Polyline = ean._libgeo.Polyline
local mm = 186467.98
local alpha = 36 * math.pi/180
local pw = 0.30*mm
local pb = 1.55*mm
local ph = pb * math.tan(alpha)
local dx = pw/(2*math.sin(alpha))
local dy = (pw/2) * math.cos(alpha)
local px1, px2 = x0 - qzl + dx, x1 + qzr - dx
local p1 = Polyline:new()
p1:add_point(px1 + pb, y_bl - 2*ph - dy)
p1:add_point(px1, y_bl - ph - dy)
p1:add_point(px1 + pb, y_bl - dy)
local p2 = Polyline:new()
p2:add_point(px2 - pb, y_bl - 2*ph - dy)
p2:add_point(px2, y_bl - ph - dy)
p2:add_point(px2 - pb, y_bl - dy)
assert(canvas:encode_linewidth(pw))
assert(canvas:encode_polyline(p1))
assert(canvas:encode_polyline(p2))
end
end
return {x0, y0, x1, y1, qzl, nil, qzr, nil,}
end
-- draw EAN5 add-on symbol
fn_append_ga_variant["5"] = function (ean, canvas, tx, ty, ax, ay, h)
local Codeset = ean._5_codeset_vbar
local queue = assert(Codeset:get("start"))
local l1 = ean._main_len
local i1; if l1 == 5 then
i1 = 1
else
i1 = l1 + 1
end
local i2 = i1 + 4
local mod = ean.mod
-- draw the five digits
local code = ean._code_data
local ck = checksum_5_2(code, i1, 5)
local cset = ean._codeset_5[ck]
local k = 0
for i = i1, i2 do
k = k + 1
queue = queue + assert(Codeset:get(cset[k], code[i]))
if k < 5 then
queue = queue + assert(Codeset:get("sep"))
end
end
local w = 47*mod
h = h or ean.height
local x0 = tx - ax * w
local y0 = ty - ay * h
local x1 = x0 + w
local y1 = y0 + h
-- draw the symbol
assert(canvas:encode_disable_bbox())
assert(canvas:encode_vbar_queue(queue, x0, y0, y1))
-- bounding box set up
local qzl = ean.quietzone_left_factor * mod
local qzr = ean.quietzone_right_factor * mod
assert(canvas:encode_set_bbox(x0 - qzl, y0, x1 + qzr, y1))
assert(canvas:encode_enable_bbox())
if ean.text_enabled then -- human readable text
local Text = ean._libgeo.Text
local txt = Text:from_digit_array(code, i1, i2)
local y_bl = y1 + ean.text_ygap_factor * mod
local x1_1 = x0 + 3*mod
local x1_2 = x1 - 3*mod
assert(canvas:encode_Text_xwidth(txt, x1_1, x1_2, y_bl, 0))
if ean.text_guard_enabled then
local Polyline = ean._libgeo.Polyline
local mm = 186467.98
local alpha = 36 * math.pi/180
local pw = 0.30*mm
local dx = pw/(2*math.sin(alpha))
local dy = (pw/2) * math.cos(alpha)
local px = x1 + qzr - dx
local pb = 1.55*mm
local ph = pb * math.tan(alpha)
local p = Polyline:new()
p:add_point(px - pb, y_bl + dy)
p:add_point(px, y_bl + ph + dy)
p:add_point(px - pb, y_bl + 2*ph + dy)
assert(canvas:encode_linewidth(pw))
assert(canvas:encode_polyline(p))
end
end
return {x0, y0, x1, y1, qzl, nil, qzr, nil,}
end
-- draw EAN2 symbol
fn_append_ga_variant["2"] = function (ean, canvas, tx, ty, ax, ay, h)
local l1 = ean._main_len
local i1; if l1 == 2 then
i1 = 1
else
i1 = l1 + 1
end
local code = ean._code_data
local r = checksum_5_2(code, i1, 2)
local s1, s2
if r == 0 then -- LL scheme
s1, s2 = 1, 1
elseif r == 1 then -- LG scheme
s1, s2 = 1, 2
elseif r == 2 then -- GL scheme
s1, s2 = 2, 1
else -- r == 3 -- GG scheme
s1, s2 = 2, 2
end
local Codeset = ean._2_codeset_vbar
local queue = assert(Codeset:get("start")) +
assert(Codeset:get(s1, code[i1])) + -- first digit
assert(Codeset:get("sep")) +
assert(Codeset:get(s2, code[i1 + 1])) -- second digit
-- draw the symbol
local mod = ean.mod
local w = 20*mod
h = h or ean.height
local x0 = tx - ax * w
local y0 = ty - ay * h
local x1 = x0 + w
local y1 = y0 + h
assert(canvas:encode_disable_bbox())
assert(canvas:encode_vbar_queue(queue, x0, y0, y1))
-- bounding box set up
local qzl = ean.quietzone_left_factor * mod
local qzr = ean.quietzone_right_factor * mod
assert(canvas:encode_set_bbox(x0 - qzl, y0, x1 + qzr, y1))
assert(canvas:encode_enable_bbox())
if ean.text_enabled then -- human readable text
local Text = ean._libgeo.Text
local txt = Text:from_digit_array(code, i1, i1 + 1)
local y_bl = y1 + ean.text_ygap_factor * mod
local x1_1 = x0 + 3*mod
local x1_2 = x1 - 3*mod
assert(canvas:encode_Text_xwidth(txt, x1_1, x1_2, y_bl, 0))
if ean.text_guard_enabled then
local Polyline = ean._libgeo.Polyline
local mm = 186467.98
local alpha = 36 * math.pi/180
local pw = 0.30*mm
local dx = pw/(2*math.sin(alpha))
local dy = (pw/2) * math.cos(alpha)
local px = x1 + qzr - dx
local pb = 1.55*mm
local ph = pb * math.tan(alpha)
local p = Polyline:new()
p:add_point(px - pb, y_bl + dy)
p:add_point(px, y_bl + ph + dy)
p:add_point(px - pb, y_bl + 2*ph + dy)
assert(canvas:encode_linewidth(pw))
assert(canvas:encode_polyline(p))
end
end
return {x0, y0, x1, y1, qzl, nil, qzr, nil,}
end
fn_append_ga_variant["13+5"] = function (ean, canvas, tx, ty, ax, ay)
local mod = ean.mod
local bars_depth = mod * ean.bars_depth_factor
local h = ean.height + bars_depth
local w = (142 + ean.addon_xgap_factor) * mod
local x0 = tx - ax * w
local y0 = ty - ay * h
local x1 = x0 + w
local fn_ga = ean._append_ga_variant
local fn_1 = fn_ga["13"]
local fn_2 = fn_ga["5"]
local b1 = fn_1(ean, canvas, x0, y0, 0, 0)
local b2 = fn_2(ean, canvas, x1, y0, 1, 0, 0.85 * h)
return {b1[1], b1[2], b2[3], b1[4], b1[5], nil, b2[7], nil,}
end
fn_append_ga_variant["13+2"] = function (ean, canvas, tx, ty, ax, ay)
local mod = ean.mod
local bars_depth = mod * ean.bars_depth_factor
local h = ean.height + bars_depth
local w = (115 + ean.addon_xgap_factor) * mod
local x0 = tx - ax * w
local y0 = ty - ay * h
local x1 = x0 + w
local fn_ga = ean._append_ga_variant
local fn_1 = fn_ga["13"]
local fn_2 = fn_ga["2"]
local b1 = fn_1(ean, canvas, x0, y0, 0, 0)
local b2 = fn_2(ean, canvas, x1, y0, 1, 0, 0.85 * h)
return {b1[1], b1[2], b2[3], b1[4], b1[5], nil, b2[7], nil,}
end
fn_append_ga_variant["8+5"] = function (ean, canvas, tx, ty, ax, ay)
local mod = ean.mod
local bars_depth = mod * ean.bars_depth_factor
local h = ean.height + bars_depth
local w = (114 + ean.addon_xgap_factor) * mod
local x0 = tx - ax * w
local y0 = ty - ay * h
local x1 = x0 + w
local fn_ga = ean._append_ga_variant
local fn_1 = fn_ga["8"]
local fn_2 = fn_ga["5"]
local b1 = fn_1(ean, canvas, x0, y0, 0, 0)
local b2 = fn_2(ean, canvas, x1, y0, 1, 0, 0.85 * h)
return {b1[1], b1[2], b2[3], b1[4], b1[5], nil, b2[7], nil,}
end
fn_append_ga_variant["8+2"] = function (ean, canvas, tx, ty, ax, ay)
local mod = ean.mod
local bars_depth = mod * ean.bars_depth_factor
local h = ean.height + bars_depth
local w = (87 + ean.addon_xgap_factor) * mod
local x0 = tx - ax * w
local y0 = ty - ay * h
local x1 = x0 + w
local fn_ga = ean._append_ga_variant
local fn_1 = fn_ga["8"]
local fn_2 = fn_ga["2"]
local b1 = fn_1(ean, canvas, x0, y0, 0, 0)
local b2 = fn_2(ean, canvas, x1, y0, 1, 0, 0.85 * h)
return {b1[1], b1[2], b2[3], b1[4], b1[5], nil, b2[7], nil,}
end
-- ISBN
fn_append_ga_variant["isbn"] = fn_append_ga_variant["13"]
fn_append_ga_variant["isbn+5"] = fn_append_ga_variant["13+5"]
fn_append_ga_variant["isbn+2"] = fn_append_ga_variant["13+2"]
-- ISSN
fn_append_ga_variant["issn"] = fn_append_ga_variant["13"]
fn_append_ga_variant["issn+5"] = fn_append_ga_variant["13+5"]
fn_append_ga_variant["issn+2"] = fn_append_ga_variant["13+2"]
-- Drawing into the provided channel geometrical data
-- tx, ty is the optional translation vector
-- the function return the canvas reference to allow call chaining
function EAN:_append_ga(canvas, tx, ty) --> bbox
local var = self._variant
local fn_append_ga = assert(self._append_ga_variant[var])
local ax, ay = self.ax, self.ay
return fn_append_ga(self, canvas, tx, ty, ax, ay)
end
return EAN
|