UNPKG

jsqr

Version:

A pure javascript QR code reading library that takes in raw images and will locate, extract and parse any QR code found within.

9 lines (8 loc) 271 B
import { BitMatrix } from "../BitMatrix"; export declare function binarize(data: Uint8ClampedArray, width: number, height: number, returnInverted: boolean): { binarized: BitMatrix; inverted: BitMatrix; } | { binarized: BitMatrix; inverted?: undefined; };