Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neocotic/qrious
Pure JavaScript library for QR code generation using canvas
https://github.com/neocotic/qrious
browser javascript qr qrcode qrcode-generator
Last synced: 4 days ago
JSON representation
Pure JavaScript library for QR code generation using canvas
- Host: GitHub
- URL: https://github.com/neocotic/qrious
- Owner: neocotic
- License: other
- Created: 2011-08-10T14:23:55.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T16:43:55.000Z (6 months ago)
- Last Synced: 2024-10-29T15:28:04.992Z (about 2 months ago)
- Topics: browser, javascript, qr, qrcode, qrcode-generator
- Language: JavaScript
- Homepage: https://neocotic.com/qrious
- Size: 1.38 MB
- Stars: 1,544
- Watchers: 35
- Forks: 214
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Authors: AUTHORS.md
Awesome Lists containing this project
- awesome-canvas - qrious - Pure JavaScript library for QR code generation using canvas. ![](https://img.shields.io/github/stars/neocotic/qrious?style=social) ![](https://img.shields.io/github/forks/neocotic/qrious?style=social) (Libraries / QR code)
- oss - QRious - Pure JavaScript library for QR code generation using canvas - qr, qrcode, qrcode-generator, javascript, neocotic qrious (Open Source Project / Utility)
README
.d88888b. 8888888b. d8b
d88P" "Y88b 888 Y88b Y8P
888 888 888 888
888 888 888 d88P 888 .d88b. 888 888 .d8888b
888 888 8888888P" 888 d88""88b 888 888 88K
888 Y8b 888 888 T88b 888 888 888 888 888 "Y8888b.
Y88b.Y8b88P 888 T88b 888 Y88..88P Y88b 888 X88
"Y888888" 888 T88b 888 "Y88P" "Y88888 88888P'
Y8b[QRious](https://github.com/neocotic/qrious) is a pure JavaScript library for generating QR codes using HTML5 canvas.
[![Chat](https://img.shields.io/gitter/room/neocotic/qrious.svg?style=flat-square)](https://gitter.im/neocotic/qrious)
[![Demo](https://img.shields.io/badge/demo-live-brightgreen.svg?style=flat-square)](https://codepen.io/neocotic/pen/YQzmBm)
[![Dev Dependency Status](https://img.shields.io/david/dev/neocotic/qrious.svg?style=flat-square)](https://david-dm.org/neocotic/qrious?type=dev)
[![License](https://img.shields.io/npm/l/qrious.svg?style=flat-square)](https://github.com/neocotic/qrious/blob/master/LICENSE.md)
[![Release](https://img.shields.io/npm/v/qrious.svg?style=flat-square)](https://www.npmjs.com/package/qrious)* [Install](#install)
* [Examples](#examples)
* [API](#api)
* [Migrating from older versions](#migrating-from-older-versions)
* [Bugs](#bugs)
* [Contributors](#contributors)
* [License](#license)## Install
Install using the package manager for your desired environment(s):
``` bash
$ npm install --save qrious
# OR:
$ bower install --save qrious
```If you want to simply download the file to be used in the browser you can find them below:
* [Development Version](https://cdnjs.cloudflare.com/ajax/libs/qrious/4.0.2/qrious.js) (71kb - [Source Map](https://cdnjs.cloudflare.com/ajax/libs/qrious/4.0.2/qrious.js.map))
* [Production Version](https://cdnjs.cloudflare.com/ajax/libs/qrious/4.0.2/qrious.min.js) (18kb - [Source Map](https://cdnjs.cloudflare.com/ajax/libs/qrious/4.0.2/qrious.min.js.map))Check out [node-qrious](https://github.com/neocotic/node-qrious) if you want to install it for use within
[Node.js](https://nodejs.org).## Examples
``` html
(function() {
var qr = new QRious({
element: document.getElementById('qr'),
value: 'https://github.com/neocotic/qrious'
});
})();
```
Open up `demo.html` in your browser to play around a bit.
## API
Simply create an instance of `QRious` and you've done most of the work. You can control many aspects of the QR code
using the following fields on your instance:| Field | Type | Description | Default | Read Only |
| --------------- | ------- | -------------------------------------------------- | ------------- | --------- |
| background | String | Background color of the QR code | `"white"` | No |
| backgroundAlpha | Number | Background alpha of the QR code | `1.0` | No |
| element | Element | Element to render the QR code | `` | Yes |
| foreground | String | Foreground color of the QR code | `"black"` | No |
| foregroundAlpha | Number | Foreground alpha of the QR code | `1.0` | No |
| level | String | Error correction level of the QR code (L, M, Q, H) | `"L"` | No |
| mime | String | MIME type used to render the image for the QR code | `"image/png"` | No |
| padding | Number | Padding for the QR code (pixels) | `null` (auto) | No |
| size | Number | Size of the QR code (pixels) | `100` | No |
| value | String | Value encoded within the QR code | `""` | No |``` javascript
var qr = new QRious();
qr.background = 'green';
qr.backgroundAlpha = 0.8;
qr.foreground = 'blue';
qr.foregroundAlpha = 0.8;
qr.level = 'H';
qr.padding = 25;
qr.size = 500;
qr.value = 'https://github.com/neocotic/qrious';
```The QR code will automatically update when you change one of these fields, so be wary when you plan on changing lots of
fields at the same time. You probably want to make a single call to `set(options)` instead as it will only update the QR
code once:``` javascript
var qr = new QRious();
qr.set({
background: 'green',
backgroundAlpha: 0.8,
foreground: 'blue',
foregroundAlpha: 0.8,
level: 'H',
padding: 25,
size: 500,
value: 'https://github.com/neocotic/qrious'
});
```These can also be passed as options to the constructor itself:
``` javascript
var qr = new QRious({
background: 'green',
backgroundAlpha: 0.8,
foreground: 'blue',
foregroundAlpha: 0.8,
level: 'H',
padding: 25,
size: 500,
value: 'https://github.com/neocotic/qrious'
});
```You can also pass in an `element` option to the constructor which can be used to generate the QR code using an existing
DOM element, which is the only time that you can specify read only options. `element` must either be a ``
element or an `` element which can then be accessed via the `canvas` or `image` fields on the instance
respectively. An element will be created for whichever one isn't provided or for both if no `element` is specified,
which means that they can be appended to the document at a later time.``` javascript
var qr = new QRious({
element: document.querySelector('canvas'),
value: 'https://github.com/neocotic/qrious'
});qr.canvas.parentNode.appendChild(qr.image);
```A reference to the `QRious` instance is also stored on both of the elements for convenience.
``` javascript
var canvas = document.querySelector('canvas');
var qr = new QRious({
element: canvas,
value: 'https://github.com/neocotic/qrious'
});qr === canvas.qrious;
//=> true
```### `toDataURL([mime])`
Generates a base64 encoded data URI for the QR code. If you don't specify a MIME type, it will default to the one
passed to the constructor as an option or the default value for the `mime` option.``` javascript
var qr = new QRious({
value: 'https://github.com/neocotic/qrious'
});qr.toDataURL();
//=> "data:image/png;base64,iVBOR...AIpqDnseH86KAAAAAElFTkSuQmCC"
qr.toDataURL('image/jpeg');
//=> "data:image/jpeg;base64,/9j/...xqAqIqgKFAAAAAq3RRQAUUUUAf/Z"
```## Migrating from older versions
If you've been using an older major version and would like details on what's changed and information on how to migrate
to the latest major release below:https://github.com/neocotic/qrious/wiki/Migrating-from-older-versions
## Bugs
If you have any problems with QRious or would like to see changes currently in development you can do so
[here](https://github.com/neocotic/nqrious/issues). Core features and issues are maintained separately
[here](https://github.com/neocotic/qrious-core/issues).## Contributors
If you want to contribute, you're a legend! Information on how you can do so can be found in
[CONTRIBUTING.md](https://github.com/neocotic/qrious/blob/master/CONTRIBUTING.md). We want your suggestions and pull
requests!A list of QRious contributors can be found in [AUTHORS.md](https://github.com/neocotic/qrious/blob/master/AUTHORS.md).
## License
Copyright © 2017 Alasdair Mercer
Copyright © 2010 Tom ZeruchaSee [LICENSE.md](https://github.com/neocotic/qrious/blob/master/LICENSE.md) for more information on our GPLv3 license.