#指纹 #SDK #生物识别 #API 绑定 #secugen

secugen_rs

SecuGen SDK 的 Rust 绑定

2 个不稳定版本

0.2.0 2023年11月24日
0.1.0 2023年11月23日

#5 in #生物识别

自定义许可证

5MB
215

包含 (Windows DLL, 3MB) libs/windows/sgfdusdax64.dll, (ELF 库, 565KB) libs/linux/libjpeg.so, (Windows DLL, 630KB) libs/windows/sgfplib.dll, (ELF 库, 140KB) libs/linux/libsgfplib.so, (Windows DLL, 255KB) libs/windows/sgbledev.dll, (Windows DLL, 190KB) libs/windows/sgfpamx.dll 和更多

secugen_rs

Secugen SDK 的 Rust 绑定允许您使用 Secugen 指纹扫描器系列产品 https://secugen.com/products/#fingerprint

安装

[dependencies]
secugen_rs = "0.2.0"

使用

use secugen_rs::sgfpm::FPM;

fn main() {
    let mut fpm = FPM::new();

    let res = fpm.init_device(None, None, None, None);

    match res {
        Ok(_) => println!("Device initialized"),
        Err(e) => println!("Error: {}", e),
    }

    let res = fpm.capture_image();

    match res {
        Ok(b) => println!("Image captured {:?}",b),
        Err(e) => println!("Error: {}", e),
    }

    println!("Hello, world!");
}
LD_LIBRARY_PATH=/usr/local/lib/ cargo run

无运行时依赖