ZPL - 如何增加 ^BC(代码 128)条形码的宽度

发布于 2024-11-29 01:32:32 字数 326 浏览 2 评论 0原文

正在对条形码标签进行格式化。 我们正在使用 Zebra 编程语言^BC(代码 128)条码

当我增加 ^FD 字段数据<的大小时/strong> ,条形码宽度正在增加。

但是我如何为固定的小长度数据打印更宽的条形码。

我看到了其他一些类型(例如 UPC E 条形码)的放大系数。

但我没有找到 ^BC code 128 条形码的任何放大倍数。

我放了一些空格,它增加了宽度,但在读取条形码时效果不佳

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最佳男配角 2024-12-06 01:32:32

看一下^BY命令,

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

第一个参数是它后面的条码的宽度。默认为 2,范围为 1-10

要更改解释行上文本的字体、大小和位置,请使用 ^A 命令

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

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
久伴你 2024-12-06 01:32:32

我知道现在回答你的问题已经太晚了,但我认为这可能对其他人有帮助。

我遇到了同样的问题,并通过这个技巧解决了,我将 BC 模式设置为 A(自动)。

例如:

^BY3,3,55^FT12,172^BCN,,Y,N,,A
^FD123456789^FS

与模式设置为默认值相比,这对我来说产生了更好的条形码宽度。

注意:您仍然可以更改 BY 以满足您的需要。

您可以参阅文档了解更多信息 zpl BC 命令

I know it's too late to answer your question but I thought it might help others.

I faced the same issue and solved by this trick where I set BC mode to A (for automatic).

example:

^BY3,3,55^FT12,172^BCN,,Y,N,,A
^FD123456789^FS

this resulted a better barcode width for me than when mode is set to its default value.

Note: still you can change BY to suit your needs.

You can refer to the documentation for more information zpl BC command

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文