rusthashavatar

rust编写的hash头像生成库

```rust use hash_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(); } ```

运行Example

sh git pull https://github.com/t924417424/rust_hash_avatar.git master cd rsut_hash_avatar cargo run --example test

生成结果

测试1 测试2