條碼控件
Barcode Xpress提供了
條碼檢測和條碼建立的的功能,使用Barcode Xpress將會更加輕鬆的添加優秀的條碼功能到Windows應用程序中。Barcode Xpress支持一系列的1D和2D的條形碼,並能夠在圖像中自動檢測全部的條碼,還會對檢測的全部的條碼返回一個詳細的且完善的檢測結果。
每一個條碼結果包含如下的屬性參數: ide
Barcode value spa
Barcode type code
Confidence 排序
Location get
Skew io
>>>Barcode Xpress 下載 下載
因爲Barcode Xpress能夠從一個單一的掃描中返回多個條碼結果,檢測的條碼結果均可以按照下面的標準來進行存儲,可是須要注意的是全部解決了的條碼將會排在沒有解決的條碼以前。 程序
- Confidence因素是決定條碼結果排序的條件,通常是從高往低排列。Confidence屬性將會得到已經識別過的條碼的Confidence。
- 下面,對於有着相同的Confidence的任意條碼,將會從上到下,而後從左往右的經過位置來進行排序。
- Sort the results top to bottom
- Dim BarcodeArray() As BarcodeInfo
- Redim BarcodeArray(0 To BarcodeXpress1.NumBarcodes - 1)
- ' fill the user type array
- For i = 0 To BarcodeXpress1.NumBarcodes - 1
- BarcodeXpress1.GetBarcode i
- BarcodeArray(i).CodeName = BarcodeXpress1.BarcodeCodeName
- BarcodeArray(i).result = BarcodeXpress1.BarcodeResult
- BarcodeArray(i).CheckSumOK = BarcodeXpress1.CheckSumOK
- BarcodeArray(i).Confidence = BarcodeXpress1.Confidence
- BarcodeArray(i).Length = BarcodeXpress1.ResultLen
- BarcodeArray(i).X = BarcodeXpress1.BarcodeX
- BarcodeArray(i).Y = BarcodeXpress1.BarcodeY
- BarcodeArray(i).H = BarcodeXpress1.BarcodeH
- BarcodeArray(i).W = BarcodeXpress1.BarcodeW
- Next i
- ' actual sort results top to bottom
- Dim temp As BarcodeInfo
- For i = Ubound(BarcodeArray) - 1 To 0 Step -1
- For j = 0 To i
- If BarcodeArray(j).Y > BarcodeArray(j + 1).Y Then
- temp = BarcodeArray(j + 1)
- BarcodeArray(j + 1) = BarcodeArray(j)
- BarcodeArray(j) = temp
- End If
- Next
- Next