rqrr-altered

Crates.iorqrr-altered
lib.rsrqrr-altered
version0.7.2
created_at2024-09-29 18:49:50.480413+00
updated_at2024-09-29 18:49:50.480413+00
descriptionDetect and read QR codes from any image source
homepage
repositoryhttps://github.com/bompidom/rqrr
max_upload_size
id1391063
size3,079,633
Erion Leka (bompidom)

documentation

https://docs.rs/rqrr/

README

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

documentation Build Status

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

Attention

This is a fork of rqrr by WanzenBug, which is extended in such a way to offer Methods of extracting raw data of QR-Codes.

Usage

The most basic usage is shown below:

use image;
use rqrr;

let img = image::open("tests/data/github.gif")?.to_luma();
// Prepare for detection
let mut img = rqrr::PreparedImage::prepare(img);
// Search for grids, without decoding
let grids = img.detect_grids();
assert_eq!(grids.len(), 1);
// Decode the grid
let (meta, content) = grids[0].decode()?;
assert_eq!(meta.ecc_level, 0);
assert_eq!(content, "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

Commit count: 0

cargo fmt