captcha-a

a captcha library for rust

image<em>0 | image</em>1 | image<em>2 --- | --- | --- image</em>3 | image<em>4 | image</em>5

code example

rust use captcha_a::{CaptchaBuilder, Font}; fn main() { let captcha = CaptchaBuilder { //custom attribute width: 120, height: 40, length: 4, fonts: vec![ Font::try_from_bytes(include_bytes!("../fonts/captcha0.ttf")).unwrap(), Font::try_from_bytes(include_bytes!("../fonts/captcha1.ttf")).unwrap(), Font::try_from_bytes(include_bytes!("../fonts/captcha2.ttf")).unwrap(), Font::try_from_bytes(include_bytes!("../fonts/captcha3.ttf")).unwrap(), Font::try_from_bytes(include_bytes!("../fonts/captcha4.ttf")).unwrap(), Font::try_from_bytes(include_bytes!("../fonts/captcha5.ttf")).unwrap(), ], //default attribute ..Default::default() }; for i in 0..6 { let save_path = format!("image_{}.png", i); let phrase = captcha.save(&save_path).unwrap(); println!("[{}]phrase={}", i, phrase); } }