Am doing a formatting of barcode label. We are using Zebra Programming Language , ^BC (Code 128) bar code

As i increase the size of ^FD Field Data , the barcode width is increasing.

But how can i print a broader bar code for a fixed small length data.

I saw magnifying factor for some other types like UPC E barcode.

But i dont find any magnifying factor for ^BC code 128 barcode.

I put some space and it increase width but not effective while reading barcode

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Look at the ^BY command

^XA
^FO100,100^BY7
^BCN,100,Y,N,N
^FD123456^FS
^XZ

The first parameter is the width of the barocdes after it. The default is 2, range is 1-10

To change the font, size, and placement of the text on the intrepretation line, use the ^A command

^XA
^FO100,100^BY7
^A0N,40,30^BCN,100,Y,N,N
^FD123456^FS
^XZ
link|improve this answer
That works great. Thanks :-) – zod Aug 9 '11 at 14:15
one doubt. when we increase barcode, human readable data of the barcode also increase or we can set that too – zod Aug 9 '11 at 14:16
Do yo mean the interpretation line? You can use the ^A font command to change the font and the font size. I'll edit my answer to show that – OTisler Aug 9 '11 at 15:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.