A small library to render badges. Includes a binary for command line usage.
```rust use badges::{BadgeBuilder, BadgeColor, BadgeStyle};
let badgesvg = BadgeBuilder::new() .style(BadgeStyle::Flat) .label("badge") .message("rendered") .messagecolor(BadgeColor::Green) .render() .expect("failed to render badge"); ```
Install with cargo install badges --features cli
. Use with badges 'label' 'message' --label-color grey --message-color green > badge.svg
.
Licensed under either of
at your option.
The included DejaVu Sans font is licensed as described here.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the fork by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.