Jump to content

GS1 Coupon Barcode


MartyrSyx

Recommended Posts

Posted

Anyone else produce GS1 Coupon Barcodes in a high quantity variable job? I don't see a way to do this in a FusionPro rule and barcode font combination and we will have to do tens of thousands. Any quick suggestions?

 

Because it will be 2-sided with other variable information, I want to stray away from generating barcode pdfs then placing them as variable imaging if I can.

 

If you could just point me in the direction of software or website, it would be great. Thanks.

SampleofGS1-InterimcouponBarcode.gif.8ebe414499cad91e30ca93aa9f2c5188.gif

Posted

For the GS1 barcode, you have to do two things:

 

1) Format the incoming text to be encoded like (420)22021

The Parentheses identify the Application Identifier in the barcode and trigger the FCN1 character to be included.

 

2) Use FusionPro's MakeEAN128Barcode function in a Rule like so:

 

return MakeEAN128Barcode("MyDataField");//change field name to match your data file.

 

Apply the IDAutomationC128M font to this Rule name in the Variable Text Editor.

This one is aware of the special requirements and should output the right symbology. Hope this helps.

Posted

Hi Brad,

Try this. It produces the desired barcode and scans as well

 

var UseChecksum = true; // or change to true

return '<f name="IDAutomationUPCEANM">' + (MakeUPCABarcode("12345678901", UseChecksum));

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...