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 在 编码
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
生成结果
依赖
~5MB
~63K SLoC