rqrr 0.1.0

Detect and read QR codes from any image source
Documentation

rust-qr-reader - Find and read QR-Codes

documentation

This crates exports functions and types that can be used to search for QR-Codes in images and decode them.

Usage

The most basic usage is shown below:

use image;
use rqrr;

let img = image::open("tests/data/github.gif").unwrap();
let codes = rqrr::find_and_decode_from_image(&img);
assert_eq!(codes.len(), 1);
assert_eq!(codes[0].val, "https://github.com/WanzenBug/rqrr");

For more information visit docs.rs

License

Either APACHE or MIT

Attribution

This library was made on the base of quirc