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

TCode93Reader.decodeRow - invalid TBarcodeFormat in TReadResult #150

Closed JedrzejczykRobert closed 1 year ago

JedrzejczykRobert commented 1 year ago

file: ZXing.OneD.Code93Reader line: 381,382

current:

  Result := TReadResult.Create(resultString, nil, resultPoints,
    TBarcodeFormat.CODE_39);

should be:

Result := TReadResult.Create(resultString, nil, resultPoints, TBarcodeFormat.CODE_93);