如何将ZXING条码编码为图像

时间:2016-06-08 07:54:49

标签: c# asp.net zxing

美好的一天,

我想要以图像格式编码ZXING条形码。原因是要在DB处存储图像。 以下是我的代码。

      var brcode = new ZXing.BarcodeWriter();
                    var encOptions = new ZXing.Common.EncodingOptions() { Width = 2, Height = 2, Margin = 0 };
                    brcode.Options = encOptions;
                    brcode.Format = ZXing.BarcodeFormat.CODE_128;
                    Bitmap result = new Bitmap(brcode.Write(barcode));

它提示错误此错误 " 索引超出了数组的范围。"

请告知。

预感谢。

1 个答案:

答案 0 :(得分:1)

经过长时间的测试和搜索,我发现了这一点 问题是 ZXing.BarcodeFormat.CODE_128;

如果我使用brcode.Format = ZXing.BarcodeFormat.QR_Code; 它工作正常。 条形码无法在ZXING中转换为图像