4个版本

0.1.5 2021年5月19日
0.1.3 2021年5月19日
0.1.2 2021年5月19日
0.1.1 2021年5月19日

#2010编码

Apache-2.0/MIT

7KB
107

rust_hash_avatar

rust编写的hash头像生成库

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

运行示例

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

生成结果

测试1 测试2

依赖

~5MB
~63K SLoC