| Read barcodes from the image with the defined options.
|
| Defines what barcode types are detected and which region should be scanned. |
| Collection of the detected barcodes. |
Example:
Dim ReadParameter As New gmseBarcodeReaderParameter
' Scan for EAN13 and Code128
ReadParameter.BarcodeType = gmseBarcodeType.Code128 Or gmseBarcodeType.EAN13
' Scan Rectangle 100,100,100,100
ReadParameter.ReadMode = gmseBarcodeReadMode.ScanRect
ReadParameter.ScanRect = New Rectangle(100,100,100,100)
' Read
bcs = img.ReadBarcodes(ReadParameter)
|