FoundBarCodes
BarCodeReader.FoundBarCodes property
يحصل على الاعترافBarCodeResult
مجموعة ق
public BarCodeResult[] FoundBarCodes { get; }
Property_Value
المعترف به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