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:

```rust use image; use rqrr;

let img = image::open("tests/data/github.gif").unwrap(); let codes = rqrr::findanddecodefromimage(&img); asserteq!(codes.len(), 1); asserteq!(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