How can I generate GS1 DataBar Coupon Barcode- using Aspose.?

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,


Thank you for contacting support. It appears as the GS1 Databar coupon barcode is not supported yet. Furthermore, we need to investigate it. We’ve logged an investigation under ticket id BARCODJAVA-33463 in our issue tracking system. Your post has also been lined to this issue. We’ll keep you informed regarding any available updates. We’re sorry for the inconvenience caused.

Hi Mahendra,


Thank you for being patient. Please note that we support the GS1 DataBar coupon generation using the .NET version of Aspose.BarCode API. We have plans to include this symbology support in its upcoming Java version too. We have attached a sample barcode image for your reference. Please let us your feedback.

[.NET, C#]
string companyPrefix = “0614141”;
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,


Thank you for being patient. We have a good news for you that the issue id BARCODJAVA-33463 has now been resolved. If there is no issue in the QA phase, then this fix will be included in the next version of Aspose.BarCode for Java 6.9.0. We’ll inform you via this forum thread as soon as the new release is published.

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.