SetBarCodeReadType
Содержание
[
Скрывать
]SetBarCodeReadType(params SingleDecodeType[])
НаборыSingleDecodeType
массив типов для распознавания. Должен вызываться перед методом ReadBarCodes().
public void SetBarCodeReadType(params SingleDecodeType[] barcodeTypes)
Параметр | Тип | Описание |
---|---|---|
barcodeTypes | SingleDecodeType[] | SingleDecodeType введите массив для чтения. |
Примеры
В этом примере показано, как обнаруживать штрих-коды Code39 и Code128.
[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
Смотрите также
- class SingleDecodeType
- class BarCodeReader
- пространство имен Aspose.BarCode.BarCodeRecognition
- сборка Aspose.BarCode
SetBarCodeReadType(BaseDecodeType)
Устанавливает тип декодирования для распознавания. Должен вызываться перед методом ReadBarCodes().
public void SetBarCodeReadType(BaseDecodeType type)
Параметр | Тип | Описание |
---|---|---|
type | BaseDecodeType | Тип штрих-кода для считывания. |
Примеры
В этом примере показано, как обнаруживать штрих-коды Code39 и Code128.
[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
Смотрите также
- class BaseDecodeType
- class BarCodeReader
- пространство имен Aspose.BarCode.BarCodeRecognition
- сборка Aspose.BarCode