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
Janus 1b87ce8ca6 add SVG support 2013-06-11 16:10:25 +02: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 Adds Comment about Browser Compatibility 2012-12-26 17:00:47 +09:00
index.html init project 2012-12-26 15:45:08 +09:00
index.svg add SVG support 2013-06-11 16:10:25 +02:00
jquery.min.js init project 2012-12-26 15:45:08 +09:00
qrcode.js add SVG support 2013-06-11 16:10:25 +02:00
qrcode.min.js Minified qrcode.js with uglifyjs 2013-06-03 14:22:14 +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 : QRCode.CorrectLevel.H
});

and you can use some methods

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

Browser Compatibility

IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, ETC.

License

MIT License

Contact

twitter @davidshimjs