Page 1 of 1

ITF14 - Bearer Bars

Posted: Wed May 01, 2019 8:10 am
by wilsonmellado
Hi, I'm planning to use your SDK, but i didn't find any information about ITF-14 with bearer bars, it is supported by this SDK ? if not, any plans on roadmap to add it?

ITF-14 Bearer Bar
https://www.gtin.info/itf-14-barcodes/

Image


Thanks!

Re: ITF14 - Bearer Bars

Posted: Mon May 06, 2019 10:26 am
by Alex
Hi,

Current version of SDK does not support bearer bars in ITF-14 barcodes. We will add support for bearer bars in ITF-14 barcodes in next minor version, which will be available in 1-2 weeks.

Best regards, Alexander

Re: ITF14 - Bearer Bars

Posted: Mon May 13, 2019 12:44 pm
by Alex
Hi Wilson,

In version 12.0.2.1 we have added the ability to generate ITF-14, Standard2of5 and Interleaved2of5 barcodes with bearer bars, which are surrounding bars which protect the bar code image.

Here is code snippet that shows how to enable bearer bars in barcode writer:

Code: Select all

barcodeWriter.Settings.BearerBars = BearerBarStyle.Frame;
barcodeWriter.Settings.BearerBarWidth = 3;
barcodeWriter.Settings.QuietZoneLeft = 30;
barcodeWriter.Settings.QuietZoneRight = 30;
Best regards, Alexander

Re: ITF14 - Bearer Bars

Posted: Tue May 14, 2019 5:20 pm
by wilsonmellado
Hi! we made some tests today and it seems to be working fine!

thanks for the fast response.