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