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
Bitdeli Chef 62e6e0ca22 Add a Bitdeli badge to README 2014-01-12 08:47:44 +00:00
.gitignore Add gitignore and ignore Aptana projects 2013-06-03 16:20:26 -07:00
LICENSE init project 2012-12-26 15:45:08 +09:00
README.md Add a Bitdeli badge to README 2014-01-12 08:47:44 +00: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 Fixed Unicode corruption bug 2013-08-07 22:47:47 +09:00
qrcode.min.js Minified with uglifyjs 2013-07-12 16:17:36 +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

Bitdeli Badge