FoundBarCodes
BarCodeReader.FoundBarCodes property
인정받다BarCodeResult
배열
public BarCodeResult[] FoundBarCodes { get; }
자산 가치
인정받은BarCodeResult
배열
예
이 샘플은 BarCodeReader 로 바코드를 읽는 방법을 보여줍니다.
[C#]
using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.Code39Standard, DecodeType.Code128))
{
reader.ReadBarCodes();
for(int i = 0; reader.FoundCount > i; ++i)
Console.WriteLine("BarCode CodeText: " + reader.FoundBarCodes[i].CodeText);
}
[VB.NET]
Using reader As New BarCodeReader("c:\test.png", DecodeType.Code39Standard, DecodeType.Code128)
reader.ReadBarCodes()
For i As Integer = 0 To reader.FoundCount - 1 Step 1
Console.WriteLine("BarCode CodeText: " + reader.FoundBarCodes(i).CodeText)
Next
End Using
또한보십시오
- class BarCodeResult
- class BarCodeReader
- 네임스페이스 Aspose.BarCode.BarCodeRecognition
- 집회 Aspose.BarCode