9.7.1 • Published 4 months ago

qreator v9.7.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

qreator

npm version

QR Code generator for browser and node.js with tree shaking and logo support

image

Overview

  • generate image in png, svg and pdf formats
  • numeric and alphanumeric modes
  • support UTF-8
  • supports color customization
  • supports logos
  • supports border-radius
  • tree shaking support
  • browser / node.js

Releases

Installing

npm install qreator
# or
yarn add qreator

Usage

Example:

import { getSVG } from "qreator/lib/svg";
import { getPNG } from "qreator/lib/png"; // imports canvas implementation in browser and sharp module in node.js
import { getPDF } from "qreator/lib/pdf"; // this import is large, consider async import
const svgString = await getSVG("I love QR", {
    logo: fs.openFileSync("my-logo.svg"),
    color: "#000000",
    bgColor: "#FFFFFF",
});
const pngBuffer = await getPNG("I love QR", {
    logo: fs.openFileSync("my-logo.svg"),
    color: "rgb(0, 0, 0)",
    bgColor: "rgb(255, 255, 255)",
});

More examples

Syntax

  • getPNG(text, [options]): Readable stream with image data.
  • getSVG(text, [options]): Readable stream with image data.
  • getPDF(text, [options]): Readable stream with image data.

Options

  • text: text to encode
  • options: additional image options object

Additional Options

NameDescriptionTypePossible ValuesDefault
ec_levelerror correction levelstringL, M, Q, HM
typeimage typestringpng, svg, pdfpng
sizepng and svg onlysize of one module in pixelsnumber0 - n5 (png)0 (others)
marginwhite space around QR image in modulesnumber0 - n4 (png)1 (others)
parse_urlEXPERIMENTALtry to optimize QR-code for URLsbooleantrue, falsefalse
logobuffer with png/jpeg imageArrayBuffer-undefined
logoWidthheight of logo in percentnumber0 - 10020
logoHeightwidth of logo in percentnumber0 - 10020
colormodule color in rgba or hex formatnumber#000000 - #000000#000000(black with 100% opacity)
bgColorbackground color in rgba or hex formatnumber#000000 - #FFFFFF#FFFFFF(white with 100% opacity)
borderRadiusborder-radius (in pixels)number0 - size / 20
noExcavatedon't remove partially covered modulesbooleantrue, falsefalse

Benchmarks

getPNG x 229 ops/sec ±0.45% (84 runs sampled)
getPDF x 186 ops/sec ±24.91% (86 runs sampled)
getSVG x 2,482 ops/sec ±0.18% (90 runs sampled)
getPNG with logo x 69.96 ops/sec ±0.72% (68 runs sampled)
getPDF with logo x 44.83 ops/sec ±9.52% (77 runs sampled)
getSVG with logo x 2,494 ops/sec ±0.19% (88 runs sampled)

TODO

  • Use lighter versions of PDF library
9.7.1

4 months ago

9.7.0

9 months ago

9.6.0

9 months ago

9.5.2

9 months ago

9.5.1

10 months ago

9.5.0

10 months ago

9.4.0

11 months ago

9.1.3

1 year ago

9.3.0

1 year ago

9.2.1

1 year ago

9.1.2

1 year ago

9.2.0

1 year ago

9.1.1

1 year ago

9.1.0

1 year ago

9.0.7

1 year ago

9.0.6

1 year ago