SetBarCodeReadType
Innehåll
[
Dölj
]SetBarCodeReadType(params SingleDecodeType[])
SetsSingleDecodeType
typ array för igenkänning. Måste anropas före metoden ReadBarCodes().
public void SetBarCodeReadType(params SingleDecodeType[] barcodeTypes)
Parameter | Typ | Beskrivning |
---|---|---|
barcodeTypes | SingleDecodeType[] | DeSingleDecodeType typ array för att läsa. |
Exempel
Detta exempel visar hur man upptäcker Code39 och Code128 streckkoder.
[C#]
using (BarCodeReader reader = new BarCodeReader())
{
reader.SetBarCodeReadType(DecodeType.Code39Standard, DecodeType.Code128);
reader.SetBarCodeImage(@"c:\test.png");
foreach (BarCodeResult result in reader.ReadBarCodes())
{
Console.WriteLine("BarCode Type: " + result.CodeTypeName);
Console.WriteLine("BarCode CodeText: " + result.CodeText);
}
}
[VB.NET]
Using reader As New BarCodeReader()
reader.SetBarCodeReadType(DecodeType.Code39Standard, DecodeType.Code128)
reader.SetBarCodeImage("c:\test.png")
For Each result As BarCodeResult In reader.ReadBarCodes()
Console.WriteLine("BarCode Type: " + result.CodeTypeName)
Console.WriteLine("BarCode CodeText: " + result.CodeText)
Next
End Using
Se även
- class SingleDecodeType
- class BarCodeReader
- namnutrymme Aspose.BarCode.BarCodeRecognition
- hopsättning Aspose.BarCode
SetBarCodeReadType(BaseDecodeType)
Ställer in avkodningstyp för igenkänning. Måste anropas före metoden ReadBarCodes().
public void SetBarCodeReadType(BaseDecodeType type)
Parameter | Typ | Beskrivning |
---|---|---|
type | BaseDecodeType | Typ av streckkod att läsa. |
Exempel
Detta exempel visar hur man upptäcker Code39 och Code128 streckkoder.
[C#]
using (BarCodeReader reader = new BarCodeReader())
{
reader.SetBarCodeReadType(new MultyDecodeType(DecodeType.Code39Standard, DecodeType.Code128));
reader.SetBarCodeImage(@"c:\test.png");
foreach (BarCodeResult result in reader.ReadBarCodes())
{
Console.WriteLine("BarCode Type: " + result.CodeTypeName);
Console.WriteLine("BarCode CodeText: " + result.CodeText);
}
}
[VB.NET]
Using reader As New BarCodeReader()
reader.SetBarCodeReadType(New MultyDecodeType(DecodeType.Code39Standard, DecodeType.Code128))
reader.SetBarCodeImage("c:\test.png")
For Each result As BarCodeResult In reader.ReadBarCodes()
Console.WriteLine("BarCode Type: " + result.CodeTypeName)
Console.WriteLine("BarCode CodeText: " + result.CodeText)
Next
End Using
Se även
- class BaseDecodeType
- class BarCodeReader
- namnutrymme Aspose.BarCode.BarCodeRecognition
- hopsättning Aspose.BarCode