I'm testing my desktop application to generate barcode in PDF417 format. Where am i going wrong? Every-time i run code and type any text into textbox and when i try to encode the data, it throws an error saying "Unable to fit message in columns" The code works for other formats of Barcode say like DATAMATRIX, QR CODE etc. But for PDF417 it won't work
I am using Zxing Barcode for encoding
Here is my code
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"