ZXing.Delphi
ZXing.Delphi copied to clipboard
ZXing Barcode Scanning object Pascal Library for Delphi VCL and Delphi Firemonkey
Hello i have a problem with reading QR codes. I am using FMXTestApp it happens every time (sometime on first read, sometime on X read) and the error is in...
Hello, I have finished PDF417 translation from C# to Delphi. It compiles just fine althought there's a lot of work to do left: - First of all Camera demo it...
 
What I mean is that when a picture has multiple one-dimensional codes or two-dimensional codes, can I return an array of scanning results? Due to technical reasons, I cannot achieve...
 I can't recognize this picture。it raise an error "Interger overflow" ,and This QR code is legal!!!
Hello, please add options to decode multiple barcodes in an image to the port. Such as [MultipleBarcodeReader](https://zxing.github.io/zxing/apidocs/com/google/zxing/multi/GenericMultipleBarcodeReader.html) with decodeMultiple.
In functions: crop, rotate ``` Self.delegate.crop(left, top, width, height) Self.delegate.rotateCounterClockwise Self.delegate.rotateCounterClockwise4 ``` **returns new instance of TLuminanceSource**, it should be stored and released in TInvertedLuminanceSource.Destructor; suggested changes: ``` constructor TInvertedLuminanceSource.Create(delegate:...
current: ``` function TRGBLuminanceSource.CreateLuminanceSource( const newLuminances: TArray; const width, height: Integer): TLuminanceSource; begin Result := TRGBLuminanceSource.Create(width, height); luminances := newLuminances; end; ``` should be: ``` function TRGBLuminanceSource.CreateLuminanceSource( const newLuminances: TArray;...
file: ZXing.OneD.OneDReader.pas line: 185 current: ``` Result := doDecode(image, hints); if (Result = nil) then begin Exit; end; ``` should be: ``` Result := doDecode(image, hints); if (Result nil) then...