Spelt / ZXing.Delphi

ZXing Barcode Scanning object Pascal Library for Delphi VCL and Delphi Firemonkey
Apache License 2.0
471 stars 206 forks source link

UPCEANExtension5 decode error #145

Closed JedrzejczykRobert closed 1 year ago

JedrzejczykRobert commented 1 year ago

Like #144

file: ZXing.OneD.UPCEANExtension5Support line: 160

current:

resultString.Append('0' + IntToStr(bestMatch mod 10));

should be:

resultString.Append(IntToStr(bestMatch mod 10));