11 releases
| new 0.1.11 | Feb 11, 2026 |
|---|---|
| 0.1.10 | Dec 2, 2025 |
| 0.1.8 | Apr 4, 2025 |
| 0.1.7 | Nov 8, 2024 |
| 0.1.4 | Nov 28, 2023 |
#431 in Images
31KB
436 lines
BioSvg
Captcha based on SVG.
Original idea
Usage
cargo add biosvg
let (answer, svg) = BiosvgBuilder::new()
.length(4)
.difficulty(6)
.colors(vec![
"#0078D6".to_string(),
"#aa3333".to_string(),
"#f08012".to_string(),
"#33aa00".to_string(),
"#aa33aa".to_string(),
])
.build()
.unwrap();
println!("answer: {}", answer);
println!("svg: {}", svg);
Example
Dependencies
~2.5–4MB
~71K SLoC