1.0.1 • Published 11 months ago

qrcode-beautify v1.0.1

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

qrcode-beautify

Create visually appealing QR codes effortlessly with qrcode-beautify.

Installation

npm i qrcode-beautify

example

createQrcode(
    {
        content: 'qrcode',
        // This is optional
        canvasId: 'canvasId',
    },
    (base64, width) => {}
)

interface QrcodeProps {
  content: string;
  codeColor?: string;
  codeBgColor?: string;
  margin?: number;
  error?: 'L' | 'M' | 'Q' | 'H';
  version?: number;
  point?: Point;
  eyeShape?: EyeShape;
  eyeOuterColor?: string;
  eyeInnerColor?: string;
  canvasId?: string;
  width?: number;
}
1.0.1

11 months ago

1.0.0

11 months ago