```rust use hesh_avatar::Generator;
fn main() { Generator::new() .create() .savetopng("fractal.png") .unwrap(); Generator::new() .setimgsize(250) .setpadding(10) .setblocknum(8) .create() .saveto_png("fractal2.png") .unwrap(); } ```
sh
git pull https://github.com/t924417424/rust_hash_avatar.git master
cd rsut_hash_avatar
cargo run --example test