我正在测试我的桌面应用程序以生成 PDF417 格式的条形码。我哪里错了?每次我运行代码并在文本框中键入任何文本时,当我尝试对数据进行编码时,它都会抛出一个错误,提示“无法将消息放入列中”该代码适用于其他格式的条码,例如 DATAMATRIX、QR CODE 等。但是对于 PDF417 它将不起作用
我正在使用 Zxing Barcode 进行编码
这是我的代码
Dim writer As new Barcodewriter
writer.format = Barcodeformat.PDF_417
pic.image = writer.write(txtbox.text)
I expect the output to be encoded in PDF417 Image but i get exceptional error as "Unable to fit message into columns"