在 PHP Web 应用程序中从网络摄像头读取条形码
想要向我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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
我碰巧遇到一个项目,有人实际上使用 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.