ZXing.Delphi icon indicating copy to clipboard operation
ZXing.Delphi copied to clipboard

ZXing Barcode Scanning object Pascal Library for Delphi VCL and Delphi Firemonkey

Results 16 ZXing.Delphi issues
Sort by recently updated
recently updated
newest added

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...

![1](https://user-images.githubusercontent.com/20390238/192676517-6f56786a-bb41-42ff-9802-097894818c0f.jpg) ![无标题](https://user-images.githubusercontent.com/20390238/192676668-a5479e92-ef6e-4df7-b105-5f8b1ce99d72.jpg)

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...

![1](https://user-images.githubusercontent.com/52373153/169444396-345a1a95-3a7d-461a-9723-c203ec4ab6a9.png) 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...