I want to generate GS1 Databar Coupon Barcode, so, Is there any functionality is available which can help me to generate this one.?
Hi Mahendra,
Hi Mahendra,
string offerCode = “654321”;
string checkValue = “1”;
string otherData = “3500110000310123196000”;
string codetext = “8110” + checkValue + companyPrefix + offerCode + otherData;
var builder = new BarCodeBuilder(codetext, Symbology.DatabarExpandedStacked);
builder.Rows = 2;
builder.CaptionAbove.Text = companyPrefix + “-” + offerCode;
builder.CaptionAbove.Visible = true;
builder.CodeLocation = CodeLocation.None;
builder.GenerateBarCodeImage().Save(“GS1_DataBar_Coupon.jpg”);
Hi Mahendra,
The issues you have found earlier (filed as BARCODJAVA-33463) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.