斑马条码阅读器的 Delphi 标头翻译
我正在寻找与 zebra lib 一起使用的 Delphi 标头
我很幸运地找到了 Zbar 的 Delphi 标头 ftp://ftp.lnssoftware.ca/Delphi/zbar.pas 这很棒,但我真的很想找到 zebra
Q1 的标题: 谁能给我一个下载地址吗?
问题2: 我想评估一些条形码扫描解决方案,所以如果有人可以推荐一些在 Delphi 中工作的东西那就太好了。
I'm looking for Delphi headers to use with the zebra lib
I was lucky to find Delphi headers for Zbar at
ftp://ftp.lnssoftware.ca/Delphi/zbar.pas
which was great, but I would really like to find headers for zebra
Q1:
Can anyone point me to a download location?
Q2:
I would like to evaluate some barcode scanning solutions, so if anyone can recommend something that works in Delphi that would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的雇主在发送的每份文档和表格上都有一个 2D DataMatrix 条形码。然后,我们使用 OPEX 扫描仪 扫描结果,并将生成的 TIFF 图像发送到
SoftTek 条码阅读器,它使我们能够快速识别传入的表单和帐户信息。由于它是一个 ActiveX 控件,我们能够轻松地在 Delphi 中使用它。
我们评估了多种读取条形码的选项,但发现 SoftTek 库使我们能够获得最佳的读取率。它不是一个便宜的图书馆,但它已经证明了它对我们组织的价值。
我刚刚看了一下 Zebra,版本控制系统已于 2010 年 9 月 23 日删除了所有文件。我看不到他们可能(如果确实)将存储库移动到了哪里。
浏览 51 个修订版,您可以看到可用的文件。但项目所有者似乎要么不知道如何使用版本控制,要么就是在玩弄。就我个人而言,根据我在 SVN 中看到的情况,我会回避这个库。
My employer has a 2D DataMatrix barcode on every document and form that is sent out. We then scan the results using an OPEX Scanner The resulting TIFF images we send to
the SoftTek Barcode Reader which allows us to quickly identify the incoming form and account information. Since it's an ActiveX control we were able to user it in Delphi easily.
We evaluated several options for reading barcodes but found that the SoftTek library allowed us to get the best read rates. It's not a cheap library but it's has proven that it's value to our organization.
I just took a look at Zebra, the Version Control System had all the files deleted out of it on Sept 23, 2010. I can't see where they may have (if they did) move the repository.
Browsing through the 51 revisions you can see the files that were available. But it appears that the project owner either did not know how to use version control or was playing around. Personally I would shy away from this library based on what I have seen in SVN.
您链接到的单元看起来不错,但它确实是“后期绑定”,要将单元转换为“早期绑定”,请将实现部分中的所有函数和过程替换为以下语法:
其中 xxx 是函数的名称(“xxx”是 GetAddressOf 的参数,但在大多数情况下是相同的)
The unit you link to looks pretty good, but it does 'late binding', to convert the unit to 'early binding' replace all the functions and procedures in the implementation section to something of this syntax:
where xxx is the name of the function (and 'xxx' the parameter to GetAddressOf, but is in most cases the same)