0.1.0 • Published 5 years ago

tiny-qr v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Wasm-powered QR code image generator

This library exposes two functions, typed accordingly:

// Encode binary data as PNG QR code
export function binary(data: Uint8Array): string | undefined;

// Encode string as PNG QR code
export function string(data: string): string | undefined;

The return value in both cases is a data URI string, ready to be used as a source for any image.