captcha-rs is a library that generate verification images dynamically.
Example pictures are as follows:
|
|
--- | --- | ---
|
|
Add the following dependency to the Cargo.toml file:
toml
[dependencies]
captcha-rs = "0.2.2"
And then get started in your main.rs
:
```rust use captcha_rs::CaptchaBuilder;
fn main() {
let captcha = CaptchaBuilder::new()
.length(5)
.width(130)
.height(40)
.dark_mode(false)
.complexity(1) // min: 1, max: 10
.build();
println!("text: {}", captcha.text);
println!("base_img: {}", captcha.base_img);
} ```
```bash
$ cargo run
$ cargo build
$ cargo test -- --nocapture ```
This project is licensed under the MIT license.
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.