Captcha-rs

Captcha-rs crate MIT License Captcha-rs documentation Recent Downloads build status

captcha-rs is a library that generate verification images dynamically.

Example pictures are as follows:

img-light-1.png | img-light-2.png | img-light-3.png --- | --- | --- img-dark-1.png | img-dark-2.png | img-dark-3.png

Example

Add the following dependency to the Cargo.toml file:

toml [dependencies] captcha-rs = "0.1"

And then get started in your main.rs:

```rust use captcha_rs::Captcha;

fn main() {

let darkmode = true; let textlength = 5; let width = 130; let height = 40;

let captcha = Captcha::new(textlength, width, height, darkmode);

println!("text: {}", captcha.text); println!("baseimg: {}", captcha.baseimg);

} ```

Test

bash $ cargo test -- --nocapture

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in captcha-rs by you, shall be licensed as MIT, without any additional terms or conditions.