你好我有一个生成条形码并使用 Spire.Barcode 库再次解码的简单示例
BarcodeSettings bcsettings = new BarcodeSettings();
bcsettings.Data = "مرحباً";
bcsettings.Type = BarCodeType.DataMatrix;
BarCodeGenerator bcgen = new BarCodeGenerator(bcsettings);
System.Drawing.Image bcimg = bcgen.GenerateImage();
System.Drawing.Bitmap bcbitmap = new System.Drawing.Bitmap(bcimg);
String bcdata = BarcodeScanner.ScanOne(bcbitmap);
output.Text += bcdata;
该示例适用于英语,但当我使用阿拉伯语时,输出显示如下。
有没有什么办法解决这一问题?
提前致谢。