hash_avatar 0.1.2

rust生成随机头像的库
Documentation
# rust_hash_avatar
## rust编写的hash头像生成库
```rust
use hesh_avatar::Generator;

fn main() {
    Generator::new()
        .create()
        .save_to_png("fractal.png")
        .unwrap();
    Generator::new()
        .set_img_size(250)
        .set_padding(10)
        .set_block_num(8)
        .create()
        .save_to_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](./fractal.png)
![测试2](./fractal2.png)