You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.4 KiB
HTML
62 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<title>index</title>
|
|
<meta name="description" content="" />
|
|
<meta name="author" content="Christoph Oberhofer" />
|
|
|
|
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
|
|
<link href='http://fonts.googleapis.com/css?family=Ubuntu:400,700,300' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" type="text/css" href="css/styles.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div class="headline">
|
|
<h1>QuaggaJS</h1>
|
|
<h2>An advanced barcode-scanner written in JavaScript</h2>
|
|
</div>
|
|
</header>
|
|
<section id="container" class="container">
|
|
<h3>Working with static images</h3>
|
|
<p>This examples uses static image files as input which are loaded from the server on startup.
|
|
The locating and decoding process takes place inside the browser.
|
|
Hit the <strong>next</strong> button to try a different image. You can also switch between
|
|
two different test-sets. Each of those contains 10 images, demonstrating the capabilities of decoding
|
|
<strong>Code128</strong> and <strong>EAN</strong> encoded barcodes.
|
|
</p>
|
|
<div class="controls">
|
|
<button class="next">Next</button>
|
|
<fieldset class="reader-group">
|
|
<label>UPC</label>
|
|
<input type="radio" name="reader" value="upc" checked />
|
|
<label>Code39</label>
|
|
<input type="radio" name="reader" value="codabar" />
|
|
<label>Code39</label>
|
|
<input type="radio" name="reader" value="code_39" />
|
|
<label>Code128</label>
|
|
<input type="radio" name="reader" value="code_128" />
|
|
<label>EAN</label>
|
|
<input type="radio" name="reader" value="ean" />
|
|
</fieldset>
|
|
</div>
|
|
<div id="result_strip">
|
|
<ul class="thumbnails"></ul>
|
|
</div>
|
|
<div id="interactive" class="viewport"></div>
|
|
<div id="debug" class="detection"></div>
|
|
</section>
|
|
<footer>
|
|
<p>
|
|
© Copyright by Christoph Oberhofer
|
|
</p>
|
|
</footer>
|
|
<script src="../src/vendor/jquery-1.9.0.min.js" type="text/javascript"></script>
|
|
<script src="../dist/quagga.js" type="text/javascript"></script>
|
|
<script src="static_images.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|