I am using ITextSharp to generate barCode.But this Codabar is giving error that "Codabar must have one of 'ABCD' as start/stop character".Please help me on this.
BarcodeCodabar codeaBar = new BarcodeCodabar();
codeaBar.CodeType = Barcode.CODABAR;
codeaBar.ChecksumText = false;
codeaBar.GenerateChecksum = false;
codeaBar.StartStopText = true;
codeaBar.Code = barcodeText;
System.Drawing.Bitmap bm = new System.Drawing.Bitmap(codeaBar.CreateDrawingImage(System.Drawing.Color.Black, System.Drawing.Color.White));
bm.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif);