mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-24 03:56:56 -04:00
Update win c6 makefile and tcl backend to version 2.6.0
This commit is contained in:
parent
19ba8a34c4
commit
c52032acb2
5 changed files with 14 additions and 10 deletions
|
@ -1219,13 +1219,14 @@ int data_matrix_200(struct zint_symbol *symbol, const unsigned char source[], co
|
|||
// Print Codewords
|
||||
#ifdef DEBUG
|
||||
{
|
||||
int CWCount;
|
||||
int CWCount;
|
||||
int posCur;
|
||||
if (skew)
|
||||
CWCount = 1558 + 620;
|
||||
else
|
||||
CWCount = bytes + rsblock * (bytes / datablock);
|
||||
printf("Codewords (%i):", CWCount);
|
||||
for (int posCur = 0; posCur < CWCount; posCur++)
|
||||
for (posCur = 0; posCur < CWCount; posCur++)
|
||||
printf(" %3i", binary[posCur]);
|
||||
puts("\n");
|
||||
}
|
||||
|
@ -1253,10 +1254,11 @@ int data_matrix_200(struct zint_symbol *symbol, const unsigned char source[], co
|
|||
#ifdef DEBUG
|
||||
// Print position matrix as in standard
|
||||
for (y = NR - 1; y >= 0; y--) {
|
||||
for (x = 0; x < NC; x++) {
|
||||
for (x = 0; x < NC; x++) {
|
||||
int v;
|
||||
if (x != 0)
|
||||
fprintf(stderr, "|");
|
||||
int v = places[(NR - y - 1) * NC + x];
|
||||
v = places[(NR - y - 1) * NC + x];
|
||||
fprintf(stderr, "%3d.%2d", (v >> 3), 8 - (v & 7));
|
||||
}
|
||||
fprintf(stderr, "\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue