- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在处理需要二维码/条形码扫描仪的客户项目。我发现zxing-cpp-emscripten非常有帮助并且符合我的要求。但我面临的一个问题是,它仅在单击功能时进行扫描,我希望它连续扫描(每 5 秒递归一次)。无需点击它。这是tutorial我在哪里找到这个的。
我尝试每五秒使用 onclick 重新加载一次按钮。但有时会卡住。
var btnautoclick = document.getElementById('go');
setInterval(function () { btnautoclick.click(); }, 5000);
请任何人都可以向我建议我该如何想出这个。
注意:我尝试插入 Js fiddle但它根本不起作用。
var videoElement = document.querySelector('video');
var canvas = document.getElementById('pcCanvas');
var mobileCanvas = document.getElementById('mobileCanvas');
var ctx = canvas.getContext('2d');
var mobileCtx = mobileCanvas.getContext('2d');
var videoSelect = document.querySelector('select#videoSource');
var videoOption = document.getElementById('videoOption');
var buttonGo = document.getElementById('go');
var barcode_result = document.getElementById('dbr');
var isPaused = false;
var videoWidth = 640,
videoHeight = 480;
var mobileVideoWidth = 240,
mobileVideoHeight = 320;
var isPC = true;
var ZXing = null;
var decodePtr = null;
var tick = function () {
if (window.ZXing) {
ZXing = ZXing();
decodePtr = ZXing.Runtime.addFunction(decodeCallback);
} else {
setTimeout(tick, 10);
}
};
tick();
var decodeCallback = function (ptr, len, resultIndex, resultCount) {
var result = new Uint8Array(ZXing.HEAPU8.buffer, ptr, len);
console.log(String.fromCharCode.apply(null, result));
barcode_result.textContent = String.fromCharCode.apply(null, result);
buttonGo.disabled = false;
if (isPC) {
canvas.style.display = 'block';
} else {
mobileCanvas.style.display = 'block';
}
};
// check devices
function browserRedirect() {
var deviceType;
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
deviceType = 'phone';
} else {
deviceType = 'pc';
}
return deviceType;
}
if (browserRedirect() == 'pc') {
isPC = true;
} else {
isPC = false;
}
// stackoverflow: http://stackoverflow.com/questions/4998908/convert-data-uri-to-file-then-append-to-formdata/5100158
function dataURItoBlob(dataURI) {
// convert base64/URLEncoded data component to raw binary data held in a string
var byteString;
if (dataURI.split(',')[0].indexOf('base64') >= 0)
byteString = atob(dataURI.split(',')[1]);
else
byteString = unescape(dataURI.split(',')[1]);
// separate out the mime component
var mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0];
// write the bytes of the string to a typed array
var ia = new Uint8Array(byteString.length);
for (var i = 0; i < byteString.length; i++) {
ia[i] = byteString.charCodeAt(i);
}
return new Blob([ia], {
type: mimeString
});
}
// add button event
buttonGo.onclick = function () {
if (isPC) {
canvas.style.display = 'none';
} else {
mobileCanvas.style.display = 'none';
}
isPaused = false;
scanBarcode();
buttonGo.disabled = true;
};
// scan barcode
function scanBarcode() {
barcode_result.textContent = "";
if (ZXing == null) {
buttonGo.disabled = false;
alert("Barcode Reader is not ready!");
return;
}
var data = null,
context = null,
width = 0,
height = 0,
dbrCanvas = null;
if (isPC) {
context = ctx;
width = videoWidth;
height = videoHeight;
dbrCanvas = canvas;
} else {
context = mobileCtx;
width = mobileVideoWidth;
height = mobileVideoHeight;
dbrCanvas = mobileCanvas;
}
context.drawImage(videoElement, 0, 0, width, height);
var vid = document.getElementById("video");
console.log("video width: " + vid.videoWidth + ", height: " + vid.videoHeight);
var barcodeCanvas = document.createElement("canvas");
barcodeCanvas.width = vid.videoWidth;
barcodeCanvas.height = vid.videoHeight;
var barcodeContext = barcodeCanvas.getContext('2d');
var imageWidth = vid.videoWidth, imageHeight = vid.videoHeight;
barcodeContext.drawImage(videoElement, 0, 0, imageWidth, imageHeight);
// read barcode
var imageData = barcodeContext.getImageData(0, 0, imageWidth, imageHeight);
var idd = imageData.data;
var image = ZXing._resize(imageWidth, imageHeight);
console.time("decode barcode");
for (var i = 0, j = 0; i < idd.length; i += 4, j++) {
ZXing.HEAPU8[image + j] = idd[i];
}
var err = ZXing._decode_any(decodePtr);
console.timeEnd('decode barcode');
console.log("error code", err);
if (err == -2) {
setTimeout(scanBarcode, 30);
}
}
// https://github.com/samdutton/simpl/tree/gh-pages/getusermedia/sources
var videoSelect = document.querySelector('select#videoSource');
navigator.mediaDevices.enumerateDevices()
.then(gotDevices).then(getStream).catch(handleError);
videoSelect.onchange = getStream;
function gotDevices(deviceInfos) {
for (var i = deviceInfos.length - 1; i >= 0; --i) {
var deviceInfo = deviceInfos[i];
var option = document.createElement('option');
option.value = deviceInfo.deviceId;
if (deviceInfo.kind === 'videoinput') {
option.text = deviceInfo.label || 'camera ' +
(videoSelect.length + 1);
videoSelect.appendChild(option);
} else {455
console.log('Found one other kind of source/device: ', deviceInfo);
}
}
}
function getStream() {
buttonGo.disabled = false;
if (window.stream) {
window.stream.getTracks().forEach(function(track) {
track.stop();
});
}
var constraints = {
video: {
deviceId: {exact: videoSelect.value}
}
};
navigator.mediaDevices.getUserMedia(constraints).
then(gotStream).catch(handleError);
}
function gotStream(stream) {
window.stream = stream; // make stream available to console
videoElement.srcObject = stream;
}
function handleError(error) {
console.log('Error: ', error);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<h1>Pure JS Barcode Reader</h1>
<div>Barcode result: <span id="dbr"></span></div>
<div class="select">
<label for="videoSource">Video source: </label><select id="videoSource"></select>
</div>
<button id="go">Read Barcode</button>
<div>
<video muted autoplay id="video" playsinline="true"></video>
<canvas id="pcCanvas" width="640" height="480" style="display: none; float: bottom;"></canvas>
<canvas id="mobileCanvas" width="240" height="320" style="display: none; float: bottom;"></canvas>
</div>
<script async src="https://raw.githubusercontent.com/yushulx/zxing-cpp-emscripten/master/examples/js/zxing.js"></script>
最佳答案
在按钮onclick之外调用scanBarcode(),每当页面加载时就会触发。
将其更改为
// add button event
buttonGo.onclick = function () {
if (isPC) {
canvas.style.display = 'none';
} else {
mobileCanvas.style.display = 'none';
}
isPaused = false;
scanBarcode();
buttonGo.disabled = true;
};
这个
// add button event
buttonGo.onclick = function () {
if (isPC) {
canvas.style.display = 'none';
} else {
mobileCanvas.style.display = 'none';
}
isPaused = false;
buttonGo.disabled = true;
};
scanBarcode();
如果你想每五秒扫描一次,那么你需要设置时间间隔
setInterval(function () {
scanBarcode();
}, 5000);
希望这个回答对您有所帮助。
关于javascript - 如何使用 zxing-cpp-emscripten 连续解码 Qr/条形码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59944357/
我了解到 QRCODES 的字符数限制约为 4,290 个(约 4kb)。 这是真的吗?有什么方法可以增加它们的内存大小吗? 如果可能的话,我希望有更多空间:P 最佳答案 规范摘要如下: * ht
我越来越多地考虑使用 QR 码来传输二进制信息,例如图像,因为每当我演示我的应用程序时,它都会发生在 WiFi 或 3G/4G 无法工作的情况下。 我想知道是否可以将一个二进制文件分成多个部分,以便通
谁知道如何生成二维码?以及如何像这里一样装饰http://mojiq.kazina.com/ ? 最佳答案 试试这个教程 http://www.thonky.com/qr-code-tutorial/
我有以下 ZPL 代码,它打印带有字段数据 X50X-8091X-11111 的 QR 代码。 ^XA^PON^FWN^FO30,10^BQN,2,6^FDx50x-8091x-12345^FS^XZ
查找 Q 的其他正交列的最佳方法是什么?我已经计算了简化的 QR 分解,但需要完整的 QR 分解。 我认为有一个标准方法,但我一直找不到它。 您可能想知道为什么我需要完整的 Q 矩阵。我用它来将“自然
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我使用 2 个不同的生成器工具生成了 2 个二维码,但输入数据相同。他们生成了完全不同的二维码。如果我扫描代码我得到相同的数据,所以看起来没问题,但我不确定这种现象的原因。 任何的想法? 编辑: 例子
我正面临一个我想不太熟悉的问题(因为,在谷歌上搜索,我没有发现任何提示)。我正在尝试使用 TCPDF 提供的类生成 QR 码。几乎一切正常。我能够生成任何类型的网站链接等。 但是当我尝试为“发送电子邮
我正面临一个我想不太熟悉的问题(因为,在谷歌上搜索,我没有发现任何提示)。我正在尝试使用 TCPDF 提供的类生成 QR 码。几乎一切正常。我能够生成任何类型的网站链接等。 但是当我尝试为“发送电子邮
我正在制作一个二维码阅读器,我遇到了 zxing lib。我能够成功地将它合并到我的项目中。但是,在使用该应用程序时,我注意到它需要另一个应用程序(即 qr droid 应用程序)才能使用它,否则应用
根据wiki ,Google 2 因素身份验证 key 应该是 16 个字符的 Base32 字符串。当我解码谷歌发给我的二维码时,我发现它符合 Key format specified by goo
为什么使用相同的网址时某些二维码看起来会有所不同? 最佳答案 QR 码有 40 种版本(大小)、4 个纠错级别和 8 种屏蔽可能性,为任何给定输入提供总共 1280 个可能的 QR 码。 通常根据要存
我正在开发 iOS 上的 QR 码扫描仪应用程序,我得到了输出 AVCaptureOutput关于委托(delegate)方法captureOutput:didOutputMetadataObject
我有一个可以扫描二维码的应用。 场景: 前往应用 点击“扫描”按钮 打开相机扫描二维码 我的问题是:我可以使用 Appium“模拟”QR 吗? 最佳答案 如果您有 QR code. Scenario
我们已使用 Unity 5.3.4f1 中的 ZXing.dll 和 Vuforia Unity SDK 5.5.9 实现了 QR 检测功能。我们在 GameObject 上有一个 QR 检测脚本,该
Warning: sharing your TOTP seed with third-parties breaks the very basic assumption of multi-factor
我正在使用 PHP QR 码 ( http://phpqrcode.sourceforge.net/ ) 创建 QR 码。它运行良好,但现在我需要一个自由空间来放置其中心的自定义图形或 Logo 。我
QR 二维码中插入图片 二维码终于火了,现在大街小巷大小商品广告上的二维码标签都随处可见,而且大都不是简单的纯二维码,而是中间有个性图标的二维码。 我之前做了一个使用google开源项目zxin
我对二维码字符表有点疑惑。规范摘要如下: Numeric only Max. 7,089 characters (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) Alphanumer
我正在尝试为每个客户生成二维码。每个二维码都会给我创建一封电子邮件。我已经研究过并且我非常确定我了解如何最好地创建包含特定主题和正文的电子邮件。 创建用于创建电子邮件的 mailto 代码/脚本/行。
我是一名优秀的程序员,十分优秀!