IronBarcode가 MSI 바코드를 인식할 수 없음
문제
IronBarcode 라이브러리를 사용하여 MSI 바코드를 생성할 때, BarcodeReader.Read 메서드가 생성된 MSI 바코드를 읽을 수 없는 경우가 있어 스캔 결과가 비어있고 바코드에서 예상한 값을 얻지 못하는 상황이 발생합니다.
해결책
MSI 바코드를 BarcodeReader.Read가 읽을 수 있도록 하기 위해서는 Read 메서드에 보조 선택적 매개변수인 BarcodeReaderOptions를 제공해야 합니다. BarcodeReaderOptions 내에서 우리가 읽으려고 하는 바코드 유형을 ExpectedBarcodeTypes 값을 할당하여 명시적으로 지정합니다. 이렇게 하면 Read 메서드가 IronBarcode에서 생성된 MSI 바코드뿐만 아니라 외부의 MSI 바코드도 인식하게 됩니다.
아래는 BarcodeReaderOptions를 BarcodeReader.Read에 적용하는 간단한 예제입니다.
코드 예제
// Creating MSI Barcode with the value "12345"
var myBarcode = BarcodeWriter.CreateBarcode("12345", BarcodeWriterEncoding.MSI);
// Save barcode as image
myBarcode.SaveAsImage("msi.png");
// Reading MSI
var barcodeReaderOptions = new BarcodeReaderOptions
{
// Assigning BarcodeEncoding.MSI to ExpectBarcodeType to ensure that IronBarcode expects MSI type barcodes specifically
ExpectBarcodeTypes = BarcodeEncoding.MSI,
};
// Read barcode with additional barcodeReaderOptions from above
var barcodeResults = BarcodeReader.Read("msi.png", barcodeReaderOptions);
// Using a for loop and print out the result
foreach (BarcodeResult result in barcodeResults)
{
Console.WriteLine(result.Text);
// Output: 12345
}
// Creating MSI Barcode with the value "12345"
var myBarcode = BarcodeWriter.CreateBarcode("12345", BarcodeWriterEncoding.MSI);
// Save barcode as image
myBarcode.SaveAsImage("msi.png");
// Reading MSI
var barcodeReaderOptions = new BarcodeReaderOptions
{
// Assigning BarcodeEncoding.MSI to ExpectBarcodeType to ensure that IronBarcode expects MSI type barcodes specifically
ExpectBarcodeTypes = BarcodeEncoding.MSI,
};
// Read barcode with additional barcodeReaderOptions from above
var barcodeResults = BarcodeReader.Read("msi.png", barcodeReaderOptions);
// Using a for loop and print out the result
foreach (BarcodeResult result in barcodeResults)
{
Console.WriteLine(result.Text);
// Output: 12345
}
' Creating MSI Barcode with the value "12345"
Dim myBarcode = BarcodeWriter.CreateBarcode("12345", BarcodeWriterEncoding.MSI)
' Save barcode as image
myBarcode.SaveAsImage("msi.png")
' Reading MSI
Dim barcodeReaderOptions As New BarcodeReaderOptions With {.ExpectBarcodeTypes = BarcodeEncoding.MSI}
' Read barcode with additional barcodeReaderOptions from above
Dim barcodeResults = BarcodeReader.Read("msi.png", barcodeReaderOptions)
' Using a for loop and print out the result
For Each result As BarcodeResult In barcodeResults
Console.WriteLine(result.Text)
' Output: 12345
Next result
예제에서는 먼저 새로운 BarcodeReaderOptions 변수를 인스턴스화한 후 IronBarcode에 MSI 바코드를 예상하도록 지시하기 위해 BarcodeEncoding.MSI 열거형과 함께 ExpectedBarcodeTypes를 할당합니다. 그 후, 바코드의 값을 출력하는데, 이는 12345가 될 것이며, barcodeResults가 BarcodeResults의 배열을 반환하고 각 결과에 대해 텍스트 값을 반복 조회합니다.

