GMSE Imaging
gmse.Imaging.gmseBitmap
Function ReadBarcodes() As gmse.Imaging.gmseBarcodeInfoCollection
Read all Code 128 barcodes from the selected page of the image.
Return Value
Collection with the detected barcodes.
Remarks
The algorithm searches always from left to right. If you want to change the search direction, you can rotate the image. This function is optimized for black white images and has build in algorithms to overcome the common problems with scanned images like punches or dots. The following example reads all barcodes from an image:
Dim img As new gmseBitmap("sample.tif") 
Dim bcs As gmseBarcodeInfoCollection 
Dim bc As gmseBarcodeInfo  

' Read the barcodes: 
bcs = img.ReadBarcodes  
' Print the barcodes: 
For Each bc In bcs  
	Debug.WriteLine(bc.Text) 
Next