我想在Word文档中生成条形码。我该怎么做?
我在数据库中存储了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于您的问题可能有更复杂的解决方案,但简单的方法是在 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.
您可以通过条形码字体来表示条形码信息。我个人使用过的一种特别是 WASP 条形码字体。
You can represent the bar code information via a bar code font. One in particular I've personally used is WASP barcode fonts.
您可以使用 Barcode.dll 条形码组件生成条形码图像:
请注意,Barcode.dll 是商业产品我创建的产品。
You can generate a barcode image using Barcode.dll barcode component:
Please note that Barcode.dll is a commercial product I created.