4 stable releases

1.1.2 Oct 7, 2023
1.1.1 Sep 30, 2023
1.1.0 Sep 25, 2023
1.0.0 Sep 23, 2023

#21 in #foundation

Download history 7/week @ 2024-02-24 101/week @ 2024-03-02 142/week @ 2024-03-09 245/week @ 2024-03-16 348/week @ 2024-03-23 83/week @ 2024-03-30 24/week @ 2024-04-06 138/week @ 2024-04-13 10/week @ 2024-04-20

261 downloads per month

MIT/Apache

11KB
176 lines

unsvg

unsvg is a Rust crate that provides a very simple SVG (Scalable Vector Graphics) rendering library. It is built upon the solid foundation of the resvg crate and offers developers an easy to use system for generating simple images.

Unsvg was developed for COMP6991: Solving Modern Programming Problems with Rust, a course at the University of New South Wales.

Usage

To use unsvg in your Rust project, simply add it as a dependency in your Cargo.toml:

[dependencies]
unsvg = "0.1"

Then, import it into your code:

use unsvg::{Image, COLORS};

fn main() -> Result<(), String> {
    let mut img: Image = Image::new(200, 200);
    let second_point = img.draw_simple_line(10.0, 10.0, 120, 100.0, COLORS[1])?;
    let third_point = img.draw_simple_line(second_point.0, second_point.1, 240, 100.0, COLORS[2])?;
    let _ = img.draw_simple_line(third_point.0, third_point.1, 0, 100.0, COLORS[3])?;

    img.save_svg("path_to.svg")?;

    Ok(())
}

For detailed usage instructions and examples, please refer to the documentation.

Documentation

Explore the full capabilities of unsvg by visiting our documentation. You'll find comprehensive guides, API references, and example code to help you get started quickly.

Contributions

We welcome contributions from the open-source community. If you find issues, have feature requests, or want to contribute code, please visit our GitHub repository here and get involved.

License

unsvg is Copyright © University of New South Wales, licensed under MIT or Apache 2.0 at your option.

Dependencies

~4MB
~86K SLoC