We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aab9ccc commit d374ebbCopy full SHA for d374ebb
core/src/datamatrix/DMDecoder.cpp
@@ -439,7 +439,7 @@ static DecoderResult DoDecode(const BitMatrix& bits)
439
return DecodedBitStreamParser::Decode(std::move(resultBytes), version->isDMRE())
440
.setVersionNumber(version->versionNumber)
441
#ifdef ZXING_EXPERIMENTAL_API
442
- .addExtra(BarcodeExtra::Version, std::to_string(version->symbolWidth) + 'x' + std::to_string(version->symbolWidth))
+ .addExtra(BarcodeExtra::Version, std::to_string(version->symbolHeight) + 'x' + std::to_string(version->symbolWidth))
443
#endif
444
;
445
}
0 commit comments