foxitsoftware / DelphiZXingQRCode

Delphi port of QR Code functionality from ZXing, a barcode image processing library.
Apache License 2.0
197 stars 115 forks source link

Error in Bom\NoBom option #3

Open ndbn opened 9 years ago

ndbn commented 9 years ago

TQRCodeEncoding = (qrAuto, qrNumeric, qrAlphanumeric, qrISO88591, qrUTF8NoBOM, qrUTF8BOM); ... if (EncodeOptions = 4) then begin // Add the UTF-8 BOM UTF8Version := #$EF#$BB#$BF + UTF8Encode(Content); ... if (EncodeOptions = 5) then begin // No BOM

qrUTF8NoBOM = 4 qrUTF8BOM = 5