ZXING条码如何编码成图片
How to encode ZXING barcode to image
大家好,
我想在图像中编码 ZXING 条形码 format.The 原因是想将图像存储在 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));
提示error这个错误
“索引超出数组范围。”
请指教
提前致谢。
经过长时间的测试和搜索,我发现
问题是 ZXing.BarcodeFormat.CODE_128;
如果我使用 brcode.Format = ZXing.BarcodeFormat.QR_Code;
它工作正常。
ZXING中条形码无法转换为图像
大家好,
我想在图像中编码 ZXING 条形码 format.The 原因是想将图像存储在 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));
提示error这个错误 “索引超出数组范围。”
请指教
提前致谢。
经过长时间的测试和搜索,我发现 问题是 ZXing.BarcodeFormat.CODE_128;
如果我使用 brcode.Format = ZXing.BarcodeFormat.QR_Code;
它工作正常。
ZXING中条形码无法转换为图像