我想在Word文档中生成条形码。我该怎么做?

发布于 2024-12-11 15:03:20 字数 167 浏览 1 评论 0原文

我在数据库中存储了 EAN-8 标准条形码信息。我正在尝试生成 MS Word 文档格式的报告。要求是我使用数据库中存储的信息在文档中创建条形码。我正在使用 VB.net (.NET Framework 2.0)。

我在MSDN上没有找到任何API?实现这一要求的途径有哪些?请任何指点。有可用的样品吗?

I have EAN-8 standard barcode information stored in the DB. I am trying to generate a report in MS Word Document format. The requirement is that I create barcode in the document using the stored info from DB. I am using VB.net (.NET Framework 2.0).

I did not find any APIs in MSDN? What are the ways to implement this requirement? Any pointers please. Are there any samples available?

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

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

发布评论

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

评论(3

二货你真萌 2024-12-18 15:03:20

对于您的问题可能有更复杂的解决方案,但简单的方法是在 Word 文档中使用条形码字体

如果您搜索条形码字体,您应该会找到一堆字体,包括 EAN8。在某些情况下,您必须支付许可证费用,但我相信也有免费版本。

此外,您还必须弄清楚如何在您的产品中分发字体。

There may be more sophisticated solutions to your problem but the simple way is to use a Barcode Font within your Word document.

If you search for barcode fonts you should find a bunch of fonts including EAN8. In some cases you'll have to pay a licence but I believe there are free versions too.

Also, you'll have to work out how to distribute the font with your product.

旧时光的容颜 2024-12-18 15:03:20

您可以通过条形码字体来表示条形码信息。我个人使用过的一种特别是 WASP 条形码字体。

You can represent the bar code information via a bar code font. One in particular I've personally used is WASP barcode fonts.

谎言月老 2024-12-18 15:03:20

您可以使用 Barcode.dll 条形码组件生成条形码图像:

Dim barcode As BaseBarcode
barcode = BarcodeFactory.GetBarcode(Symbology.EAN8)

barcode.Number = "1234567"
barcode.ChecksumAdd = true

Dim bitmap As Bitmap
bitmap = barcode.Render()

' You can also save it to a file or use to create report
barcode.Save("c:\\barcode.gif", ImageType.Gif)

请注意,Barcode.dll 是商业产品我创建的产品。

You can generate a barcode image using Barcode.dll barcode component:

Dim barcode As BaseBarcode
barcode = BarcodeFactory.GetBarcode(Symbology.EAN8)

barcode.Number = "1234567"
barcode.ChecksumAdd = true

Dim bitmap As Bitmap
bitmap = barcode.Render()

' You can also save it to a file or use to create report
barcode.Save("c:\\barcode.gif", ImageType.Gif)

Please note that Barcode.dll is a commercial product I created.

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