Added file-input example
parent
db6e0e8632
commit
a18fbcd501
@ -0,0 +1,104 @@
|
|||||||
|
---
|
||||||
|
layout: examples
|
||||||
|
title: Demo with live-stream
|
||||||
|
showInMenu: false
|
||||||
|
---
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" href="{{ site.url }}{{ site.baseurl }}/stylesheets/prism.css" />
|
||||||
|
<style>
|
||||||
|
input[type=file] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<section id="container" class="container">
|
||||||
|
<h3>Scan barcode to input-field</h3>
|
||||||
|
<p>Click the <strong>button</strong> next to the input-field
|
||||||
|
to select a file or snap a picture</p>
|
||||||
|
<div>
|
||||||
|
<form>
|
||||||
|
<div class="input-field">
|
||||||
|
<label for="isbn_input">EAN:</label>
|
||||||
|
<input id="isbn_input" class="isbn" type="text" />
|
||||||
|
<button type="button" class="icon-barcode button scan"> </button>
|
||||||
|
<input type="file" id="file" capture/>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<p>This example demonstrates the following features:
|
||||||
|
<ul>
|
||||||
|
<li>Use static image as source</li>
|
||||||
|
<li>Configuring EAN-Reader</li>
|
||||||
|
<li>Use custom mount-point (Query-Selector)</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
<div class="source-code">
|
||||||
|
<h4>Source</h4>
|
||||||
|
<div class="collapsable-source">
|
||||||
|
<pre>
|
||||||
|
<code class="language-javascript">
|
||||||
|
var Quagga = window.Quagga;
|
||||||
|
var App = {
|
||||||
|
_scanner: null,
|
||||||
|
init: function() {
|
||||||
|
this.attachListeners();
|
||||||
|
},
|
||||||
|
decode: function(src) {
|
||||||
|
Quagga
|
||||||
|
.decoder({readers: ['ean_reader']})
|
||||||
|
.locator({patchSize: 'medium'})
|
||||||
|
.fromImage(src, {size: 800})
|
||||||
|
.toPromise()
|
||||||
|
.then(function(result) {
|
||||||
|
document.querySelector('input.isbn').value = result.codeResult.code;
|
||||||
|
})
|
||||||
|
.catch(function() {
|
||||||
|
document.querySelector('input.isbn').value = "Not Found";
|
||||||
|
})
|
||||||
|
.then(function() {
|
||||||
|
this.attachListeners();
|
||||||
|
}.bind(this));
|
||||||
|
},
|
||||||
|
attachListeners: function() {
|
||||||
|
var self = this,
|
||||||
|
button = document.querySelector('.input-field input + .button.scan'),
|
||||||
|
fileInput = document.querySelector('.input-field input[type=file]');
|
||||||
|
|
||||||
|
button.addEventListener("click", function onClick(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
button.removeEventListener("click", onClick);
|
||||||
|
document.querySelector('.input-field input[type=file]').click();
|
||||||
|
});
|
||||||
|
|
||||||
|
fileInput.addEventListener("change", function onChange(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
fileInput.removeEventListener("change", onChange);
|
||||||
|
if (e.target.files && e.target.files.length) {
|
||||||
|
self.decode(URL.createObjectURL(e.target.files[0]));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
App.init();
|
||||||
|
</code>
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<div class="collapsable-source">
|
||||||
|
<pre>
|
||||||
|
<code class="language-html">
|
||||||
|
<form>
|
||||||
|
<div class="input-field">
|
||||||
|
<label for="isbn_input">EAN:</label>
|
||||||
|
<input id="isbn_input" class="isbn" type="text" />
|
||||||
|
<button type="button" class="icon-barcode button scan">&nbsp;</button>
|
||||||
|
<input type="file" id="file" capture/>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</code>
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script src="../js/quagga.js" type="text/javascript"></script>
|
||||||
|
<script src="index.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/prism.js"></script>
|
@ -0,0 +1,43 @@
|
|||||||
|
var Quagga = window.Quagga;
|
||||||
|
var App = {
|
||||||
|
_scanner: null,
|
||||||
|
init: function() {
|
||||||
|
this.attachListeners();
|
||||||
|
},
|
||||||
|
decode: function(file) {
|
||||||
|
Quagga
|
||||||
|
.decoder({readers: ['ean_reader']})
|
||||||
|
.locator({patchSize: 'medium'})
|
||||||
|
.fromSource(file, {size: 800})
|
||||||
|
.toPromise()
|
||||||
|
.then(function(result) {
|
||||||
|
document.querySelector('input.isbn').value = result.codeResult.code;
|
||||||
|
})
|
||||||
|
.catch(function() {
|
||||||
|
document.querySelector('input.isbn').value = "Not Found";
|
||||||
|
})
|
||||||
|
.then(function() {
|
||||||
|
this.attachListeners();
|
||||||
|
}.bind(this));
|
||||||
|
},
|
||||||
|
attachListeners: function() {
|
||||||
|
var self = this,
|
||||||
|
button = document.querySelector('.input-field input + .button.scan'),
|
||||||
|
fileInput = document.querySelector('.input-field input[type=file]');
|
||||||
|
|
||||||
|
button.addEventListener("click", function onClick(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
button.removeEventListener("click", onClick);
|
||||||
|
document.querySelector('.input-field input[type=file]').click();
|
||||||
|
});
|
||||||
|
|
||||||
|
fileInput.addEventListener("change", function onChange(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
fileInput.removeEventListener("change", onChange);
|
||||||
|
if (e.target.files && e.target.files.length) {
|
||||||
|
self.decode(e.target.files[0]);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
App.init();
|
Loading…
Reference in New Issue