SetBarCodeReadType

SetBarCodeReadType(params SingleDecodeType[])

セットSingleDecodeType認識用の型配列。 ReadBarCodes() メソッドの前に呼び出す必要があります。

public void SetBarCodeReadType(params SingleDecodeType[] barcodeTypes)
パラメータタイプ説明
barcodeTypesSingleDecodeType[]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

関連項目


SetBarCodeReadType(BaseDecodeType)

認識用のデコード タイプを設定します。 ReadBarCodes() メソッドの前に呼び出す必要があります。

public void SetBarCodeReadType(BaseDecodeType type)
パラメータタイプ説明
typeBaseDecodeType読み取るバーコードのタイプ。

このサンプルは、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

関連項目