在 PHP Web 应用程序中从网络摄像头读取条形码

发布于 2024-12-31 22:29:50 字数 189 浏览 0 评论 0原文

想要向我的 Web 应用程序添加以下功能:解码由 此脚本生成的条形码< /a> .带有网络摄像头并在 PHP Web 应用程序中使用值。

这可能吗?如果是的话怎么办?

Want to add following feature to my web application: To decode barcodes generated by this script . with webcam and use values in PHP web application.

Is that possible? if yes how?

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

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

发布评论

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

评论(2

终难遇 2025-01-07 22:29:50

PHP 则不然,因为它是服务器端的。但是,您可以使用 java、javascript 或其他一些客户端语言来完成此任务。

javascript (jQuery) 网络摄像头插件

http://www.xarg.org/project/jquery- webcam-plugin/

编辑 - 这样做的方法是使用 javascript 拍摄照片,然后将其发送回服务器以通过 PHP 进行解码。

http://www.inliteresearch.com/homepage/support/kb_programming.html

Not with PHP, seeing as it is server side. But, you could accomplish this with java, javascript, or some other client side languages.

javascript (jQuery) webcam plugin

http://www.xarg.org/project/jquery-webcam-plugin/

EDIT -- how this would be done is to take the picture with javascript, and then send it back to the server to decode by PHP.

http://www.inliteresearch.com/homepage/support/kb_programming.html

葮薆情 2025-01-07 22:29:50

我碰巧遇到一个项目,有人实际上使用 Javascript 以非常好的方式完成了这个任务:

https://serratus。 github.io/quaggaJS/

它只处理几种类型的条形码,但如果您需要其他类型的条形码,它可能是一个很好的起点。您很可能可以让 Javascript 使用 AJAX 将这些内容发送回 PHP,或者让它们更新要提交的表单字段。

I happened to come across a project where someone actually accomplished this in a pretty nice way using Javascript:

https://serratus.github.io/quaggaJS/

It only handles a few types of barcodes, but it may be a good starting point if you need the others. You can most likely have Javascript post these back to PHP using AJAX or have them update a form field to be submitted.

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