


This article will introduce how to use web/html5 to call the camera to achieve the effect of QR code scanning. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Use html5 (navigator.getUserMedia) to call the camera to capture the image media stream, and call the java interface to parse the image QR code through php to achieve QR code analysis, which can be combined with your own business! However, there are currently not many supported browsers, which is a problem.
html/js
nbsp;html> <title>HTML5 code Reader</title> <meta> <style> html, body { height: 100%; width: 100%; text-align:center; } </style> <script></script> <script> //这段代 主要是获取摄像头的视频流并显示在Video 签中 var canvas=null,context=null,video=null; window.addEventListener("DOMContentLoaded", function () { try{ canvas = document.getElementById("canvas"); context = canvas.getContext("2d"); video = document.getElementById("video"); var videoObj = { "video": true,audio:false}, flag=true, MediaErr = function (error) { flag=false; if (error.PERMISSION_DENIED) { alert('用户拒绝了浏览器请求媒体的权限', '提示'); } else if (error.NOT_SUPPORTED_ERROR) { alert('对不起,您的浏览器不支持拍照功能,请使用其他浏览器', '提示'); } else if (error.MANDATORY_UNSATISFIED_ERROR) { alert('指定的媒体类型未接收到媒体流', '提示'); } else { alert('系统未能获取到摄像头,请确保摄像头已正确安装。或尝试刷新页面,重试', '提示'); } }; //获取媒体的兼容代码,目前只支持(Firefox,Chrome,Opera) if (navigator.getUserMedia) { //qq浏览器不支持 if (navigator.userAgent.indexOf('MQQBrowser') > -1) { alert('对不起,您的浏览器不支持拍照功能,请使用其他浏览器', '提示'); return false; } navigator.getUserMedia(videoObj, function (stream) { video.src = stream; video.play(); }, MediaErr); } else if(navigator.webkitGetUserMedia) { navigator.webkitGetUserMedia(videoObj, function (stream) { video.src = window.webkitURL.createObjectURL(stream); video.play(); }, MediaErr); } else if (navigator.mozGetUserMedia) { navigator.mozGetUserMedia(videoObj, function (stream) { video.src = window.URL.createObjectURL(stream); video.play(); }, MediaErr); } else if (navigator.msGetUserMedia) { navigator.msGetUserMedia(videoObj, function (stream) { $(document).scrollTop($(window).height()); video.src = window.URL.createObjectURL(stream); video.play(); }, MediaErr); }else{ alert('对不起,您的浏览器不支持拍照功能,请使用其他浏览器'); return false; } if(flag){ alert('为了获得更准确的测试结果,请尽量将二维码置于框中,然后进行拍摄、扫描。 请确保浏览器有权限使用摄像功能'); } //这个是拍照按钮的事件, $("#snap").click(function () {startPat();}).show(); }catch(e){ printHtml("浏览器不支持HTML5 CANVAS"); } }, false); //打印内容到页面 function printHtml(content){ $(window.document.body).append(content+"<br/>"); } //开始拍照 function startPat(){ setTimeout(function(){//防止调用过快 if(context) { context.drawImage(video, 0, 0, 320, 320); CatchCode(); } },200); } //抓屏获取图像流,并上传到服务器 function CatchCode() { if(canvas!=null) { //以下开始编 数据 var imgData = canvas.toDataURL(); //将图像转换为base64数据 var base64Data = imgData;//.substr(22); //在前端截取22位之后的字符串作为图像数据 //开始异步上 $.post("saveimg.php", { "img": base64Data },function (result) { printHtml("解析结果:"+result.data); if (result.status == "success" && result.data!="") { printHtml("解析结果成功!"); }else{ startPat();//如果没有解析出来则重新抓拍解析 } },"json"); } } </script> <p></p> <p> <video> </video> <canvas> </canvas> <br> <button>开始扫描</button> </p>
php(saveimg)
##
<?php include_once("utils.php"); $base64_image_content=$_POST['img']; if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)) { $type = $result[2]; $new_file = "./2.{$type}"; if (file_put_contents($new_file, base64_decode(str_replace($result[1], '', $base64_image_content)))){ $code=utils::deCodeBitMap("2.png","192.168.46.123",20147); echo '{"status":"success","data":"'.trim($code).'"}'; }else{ echo '{"status":"write error","data":"NO"}'; } }else{ echo '{"status":"preg error","data":"NO"}'; } ?>php(utils)
class utils{ /** * @access static * @param $imagepath String 图片的完整路径 * @param $host String 主机如:127.0.0.1 * @param $port String 端口号如:20147 * @return string 解析出的URL */ static function deCodeBitMap($imagepath,$host,$port){ $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP) or die($imagepath." Could not connet server create\n"); // 创建一个Socket if(!$socket){ return ""; } $connection = socket_connect($socket, $host, $port) or die($imagepath." Could not connet server connection\n"); // 连接 if(!$connection){ return ""; } socket_write($socket, $imagepath) or die("Write failed\n"); // 数据传送 向服务器发送消息 $buff = socket_read($socket, 1024, PHP_NORMAL_READ); return $buff; } }java extension usage instructions
This parsing process requires java environment support. After the jar package is started, The 20147 port of this machine accepts socket monitoring, so it can be called by any network programming language. 1 Start the jar package from the command line
java -jar xxxxx.jar
If the startup is successful, you should be able to see the application of port 20147
2 Service socket call
The PHP calling code is temporarily provided
Final effect:
Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study. For more related tutorials, please visit
The above is the detailed content of web/html5 calls the camera to achieve the QR code scanning effect (code example). For more information, please follow other related articles on the PHP Chinese website!

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

因为html5不基于SGML(标准通用置标语言),不需要对DTD进行引用,但是需要doctype来规范浏览器的行为,也即按照正常的方式来运行,因此html5只需要写doctype即可。“!DOCTYPE”是一种标准通用标记语言的文档类型声明,用于告诉浏览器编写页面所用的标记的版本。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version
