生成和读取阿拉伯字母条形码时出错

时间:2019-03-02 12:01:11

标签: c# barcode arabic

我尝试使用MessagingToolkit.Barcode命名空间从文本框中生成和扫描条形码。我尝试使用阿拉伯字母,但是却遇到以下异常:其他信息:索引超出了数组的范围。 用于读取和生成裸码的代码为: 读取裸码:

BarcodeDecoder scanner= new BarcodeDecoder();
enter code hereResult result = scanner.Decode(new Bitmap(pictureBox1.Image));
MessageBox.Show(result.Text);

扫描:

BarcodeDecoder scanner = new BarcodeEncoder();
generator.IncludeLabel = true;
generator.CustomLabel = textBox1.Text;
if (textBox1.Text != "")
pictureBox1.Image = new Bitmap(generator.Encode(BarcodeFormat.Code93, textBox1.Text));

当我尝试使用阿拉伯字母生成条形码时,遇到了上面提到的异常。

我该如何解决问题

0 个答案:

没有答案