4 releases
0.1.3 | Feb 21, 2024 |
---|---|
0.1.2 | Feb 21, 2024 |
0.1.1 | Feb 14, 2024 |
0.1.0 | Feb 14, 2024 |
#550 in Images
98 downloads per month
19KB
299 lines
SVG avatars
A Rust library for generating SVG avatars from identifiers.
Example
use svg_avatars::{Rings, SvgAvatarBuilder};
fn main() {
let svg = SvgAvatarBuilder::new()
.identifier("foo")
.rings(Rings::Three)
.stroke_color("black")
.build();
svg.save("bar.svg").unwrap();
}
This produces the bar.svg
file with the following content:
License
MIT; see the LICENSE.txt file.
Dependencies
~530KB
~12K SLoC