在哪里可以找到用于生成 EAN 128 条形码的字体?

发布于 2024-12-09 23:16:22 字数 1459 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

且行且努力 2024-12-16 23:16:22

我会使用库而不是字体,原因有两个:

  • 不依赖于代码运行的系统上是否安装了字体。 (您有权在生产服务器上安装字体吗?)
  • 该库会为您处理校验和计算。

这里有一个免费的 Code128。您为其提供要编码的数据,它为您提供可以提供给客户端的Image

您需要做一些额外的工作来实施EAN 128 (GS1-128),但是这只是您向 Code128 生成器发送哪些数据的问题。

I'd use a library rather than a font, for two reasons:

  • No dependency on whether or not the font is installed on the system your code runs on. (Will you have access to install fonts on production servers?)
  • The library takes care of checksum calculation for you.

Here's a free one that does Code128. You give it the data to encode, and it gives you an Image you could serve to a client.

You'll have to do a little extra work to implement EAN 128 (GS1-128), but that's just a matter of what data you're sending to the Code128 generator.

魔法少女 2024-12-16 23:16:22

只是为了挥舞我自己的旗帜,这里是我自己的用于创建条形码图像的库,包括 EAN 128。http://code .google.com/p/netbarcodewriter

Just to wave my own flag, here's my own library to create barcode images, including EAN 128. http://code.google.com/p/netbarcodewriter

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