项目作者: emg110

项目描述 :
Algorand QR Code generator is a JavaScript module that outputs an standard QR code (exportable to SVG, PNG and Base64) from a JSON object. It works in terminal, NodeJS and modern browsers. Complies to Algorand ABNF Grammar and RFC 3986.
高级语言: JavaScript
项目地址: git://github.com/emg110/algorand-qrcode.git
创建时间: 2021-04-30T13:18:57Z
项目社区:https://github.com/emg110/algorand-qrcode

开源协议:MIT License

下载


Algorand QR Code Generator V3.2.0

NPM JavaScript Style Guide
npm

New version 3 is a complete re-write of the Algorand QRCode generation tool. Simpler and more effective!

Breaking changes: The way to import and some of options have changed , please consult this readme.



algorand://AMESZ5UX7ZJL5M6GYEHXM63OMFCPOJ23UXCQ6CVTI2HVX6WUELYIY262WI?label=emg110@gmail.com

Demo

Live Demo

Algorand Developers Portal Publication

Algorand Dev Hours Presentation

Algorand Dev Hours Presentation Video on YouTube

News

Version 3.2.0 is now here!

Now completely supports any modern web framework

Modern JS Module in both Node and Browser

Technical notes

Table of contents

Highlights

  • Supports NodeJS and Browser.
  • Supports RFC 3986 and Algorand URI ABNF Grammar.
  • CLI utility.
  • Save QR code as valid SVG image or text

Algorand URI ABNF Grammar

  1. algorandurn = "algorand://" algorandaddress [ "?" algorandparams ]
  2. algorandaddress = *base32
  3. algorandparams = algorandparam [ "&" algorandparams ]
  4. algorandparam = [ amountparam / labelparam / noteparam / assetparam ]
  5. amountparam = "amount=" *digit
  6. labelparam = "label=" *qchar
  7. assetparam = "asset=" *digit
  8. note = "note=" *qchar

Installation and use

  1. npm install --save algorand-qrcode

and then

  1. import algoqrcode from "algorand-qrcode/lib/bundle.min.js"

or, install it globally to use qrcode cli command to generate Algorand URI qrcode images in your terminal.

  1. npm install -g algorand-qrcode

and then

  1. algoqrcode [options]

Usage

Browser and Frameworks (react…) use

  1. import algoqrcode from "algorand-qrcode/lib/bundle.min.js";
  2. const MyQrCodeComponent = (props)=>{
  3. let qrcode = algoqrcode({wallet:props.wallet, label:props.label})
  4. let scg = qrcode.svg()
  5. return svg
  6. }

CLI

  1. Usage: algoqrcode [options]
  2. Algorand options:
  3. -m, --amount Amount (in Micro Algos) of Algorand transaction [number]
  4. -w, --wallet Destination Wallet address (Algorand account address) [string]
  5. -l, --label Label of Algorand transaction [string]
  6. -a, --asset Algorand asset id (in case of Algorand ASA transfer) [string]
  7. -n, --note note [string]
  8. QR Code options:
  9. -e, --ecl Error correction level [choices: "L", "M", "Q", "H"]
  10. Renderer options:
  11. -o, --output Output type [choices: "file", "svg", "terminal"]
  12. -w, --wallet Destination wallet [number]
  13. -p, --padding Padding around QRcode [number]
  14. -b, --background Light color [string]
  15. -c, --color Dark color [string]
  16. -s, --size QRcode image width and height (px) [number]
  17. -f, --file Output file [string]
  18. Options:
  19. -h, --help Show help [boolean]
  20. --version Show version number [boolean]
  21. Examples:
  22. - Send 1 Algo transaction:
  23. algoqrcode -w "AMESZ5UX7ZJL5M6GYEHXM63OMFCPOJ23UXCQ6CVTI2HVX6WUELYIY262WI" -m 1000000 -s 128 -n "This is an Algo payment transaction QR Code"
  24. - Save Algorand contact label as svg image:
  25. algoqrcode -w "AMESZ5UX7ZJL5M6GYEHXM63OMFCPOJ23UXCQ6CVTI2HVX6WUELYIY262WI" -l "emg110@gmail.com" -o file -f sample.svg

NodeJS

Import the module algorand-qrcode for your NodeJS module

  1. import algoqrcode from 'algorand-qrcode'
  2. let qrcode = algoqrcode({
  3. wallet: "AMESZ5UX7ZJL5M6GYEHXM63OMFCPOJ23UXCQ6CVTI2HVX6WUELYIY262WI",
  4. label: "Test Label",
  5. output: "svg",
  6. size:256
  7. })
  8. let svg = qrcode.svg()
  9. console.log(svg)

Error correction level

Error correction capability allows to successfully scan a QR Code even if the symbol is dirty or damaged.
Four levels are available to choose according to the operating environment.

Higher levels offer a better error resistance but reduce the symbol’s capacity.

If the chances that the QR Code symbol may be corrupted are low (for example if it is showed through a monitor)
is possible to safely use a low error level such as Low or Medium.

Possible levels are shown below:

Level Error resistance
L (Low) ~7%
M (Medium) ~15%
Q (Quartile) ~25%
H (High) ~30%

The percentage indicates the maximum amount of damaged surface after which the symbol becomes unreadable.

Error level can be set through options.ecl property.

If not specified, the default value is M.

QR Code options

errorCorrectionLevel

Type: String

Default: M

Error correction level.

Possible values are low, medium, quartile, high or L, M, Q, H.

Algorand URI params

wallet

Type: String

Wallet address for Algorand transaction.

amount

Type: Number

Amount of Algorand transaction in MicroAlgos or Standard Asset Unit.

label

Type: String

Label of Algorand transaction.

asset

Type: String

Asset Id of Algorand transaction if used. If not specified , Algo will be used as fungible token.

note

Type: String

note field content of Algorand transaction.

Renderers options

ecl

Type: String

Default: M

Define the error correction level.

padding

Type: Number

Default: 5

Define how much wide the quiet zone should be.

size

Type: Number

Default: 128

Width and height.

color

Type: String

Default: #000000ff

Color of dark module. Value must be in hex format (RGBA).

Note: dark color should always be darker than color.light.

background

Type: String

Default: #ffffffff

Color of light module. Value must be in hex format (RGBA).

License

MIT

Credits

Special appreciations to Sheghzo.

The idea for this lib was inspired by: Algorand developers portal Article Payment Prompts with Algorand Mobile Wallet ,from Jason Paulos.

Mentioned Trademarks

“QR Code” curtsey of :

“Algorand” curtsey of: