Skip to content

Commit fd58f3c

Browse files
committed
DMRE doesn't work in all cases
1 parent b7a99c4 commit fd58f3c

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Source/lib/datamatrix/encoder/SymbolInfo.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,10 @@ public static SymbolInfo lookup(int dataCodewords,
196196
{
197197
foreach (SymbolInfo symbol in symbols)
198198
{
199+
if (symbol.dmre)
200+
// DMRE Symbols doesn't work in all cases
201+
continue;
202+
199203
if (shape == SymbolShapeHint.FORCE_SQUARE && symbol.rectangular)
200204
{
201205
continue;

0 commit comments

Comments
 (0)