使用 javascript 从图像中读取条形码
我需要一个 javascript 代码来读取/提取图像中的条形码。 例如,图像可能嵌入在网页中,并且我想将图像传递给 Javascript 函数。
该函数应该读取/解析图像并从图像中提取条形码。
I need a javascript code that will read/ extract barcode from an image.
for example, the image may be embedded in a web page and i wan to pass the image to the Javascript function.
The function should read/parse the image and extract the barcode from the image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有 QuaggaJS 库(开源)用于读取条形码,全部用 JavaScript 完成。
它目前支持 EAN、CODE 128、CODE 39、EAN 8、UPC-A、UPC-C 和 CODABAR
我相信它会满足您的需求。
更新:2021 年 8 月
看起来原来的 QuaggaJS 不再被积极维护。
Quagga2 处于活跃状态并延续了原始目标。
(感谢@bertasoft 的提示!)
There is QuaggaJS library (open source) for reading barcodes, all done in JavaScript.
It currently supports EAN, CODE 128, CODE 39, EAN 8, UPC-A, UPC-C, and CODABAR
I suspect it will meet your needs.
Update: 2021-August
Looks like the original QuaggaJS is no longer actively maintained.
Quagga2 is active and continues the goals of the original.
(thanks @bertasoft for the tip!)