When attempting to create an GS1-128 barcode I encounter the following exception: there.are.illegal.characters.for.barcode.128.in.1
iTextSharp.text.pdf.Barcode barcode = null;
barcode = new Barcode128();
barcode.CodeType = iTextSharp.text.pdf.Barcode.CODE128_UCC;
barcode.GenerateChecksum = true;
barcode.Code = code;
using (var image = barcode.CreateDrawingImage(Color.Black, Color.White))