captcha_rust is a library that generates picture verification codes. Example pictures are as follows:
|
|
---- | ----- | ------
|
|
Add the following dependency to the Cargo.toml file:
toml
[dependencies]
captcha_rust = "0.1.1"
And then get started in your main.rs
:
```rust use captcha_rust::Captcha;
fn main() { let a = Captcha::new(5,130,40); println!("test:{},baseimg:{}", a.text, a.baseimg); } ```