QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. QRCode.js has no dependencies.
 
 
Go to file
Sangmin Shim c9d37bd0c7 init project 2012-12-26 15:45:08 +09:00
.project init project 2012-12-26 15:45:08 +09:00
LICENSE init project 2012-12-26 15:45:08 +09:00
README.md init project 2012-12-26 15:45:08 +09:00
index.html init project 2012-12-26 15:45:08 +09:00
jquery.min.js init project 2012-12-26 15:45:08 +09:00
qrcode.js init project 2012-12-26 15:45:08 +09:00

README.md

QRCode.js

QRCode.js is javascript library for making QRCode. QRCode.js supports Cross-browser with HTML5 Canvas and table tag in DOM. QRCode.js has no dependencies.

Basic Usages

<div id="qrcode"></div>
<script type="text/javascript">
new QRCode(document.getElementById("qrcode"), "http://jindo.dev.naver.com/collie");
</script>

or with some options

var qrcode = new QRCode("test", {
	text: "http://jindo.dev.naver.com/collie",
	width: 128,
	height: 128,
	colorDark : "#000000",
	colorLight : "#ffffff",
	correctLevel : QRErrorCorrectLevel.H
});

and you can use some methods

qrcode.clear(); // clear the code.
qrcode.makeCode("http://naver.com"); // make another code.

#License MIT License

#Contact twitter @davidshimjs