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
David Clarke 0a85290fb2 Revert "Store off reference to this for use with callbacks"
This reverts commit 95b47b9a19.
2013-05-26 17:28:14 -07: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
jquery.min.js init project 2012-12-26 15:45:08 +09:00
qrcode.js Revert "Store off reference to this for use with callbacks" 2013-05-26 17:28:14 -07:00
qrcode.min.js Android 2.x doesn't support Data-URI 2013-01-08 18:28:52 +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