vtracer 0.6.1

A cmd app to convert images into vector graphics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod config;
mod converter;
mod svg;

fn main() {
    let config = config::Config::from_args();
    let result = converter::convert_image_to_svg(config);
    match result {
        Ok(()) => {
            println!("Conversion successful.");
        },
        Err(msg) => {
            panic!("Conversion failed with error message: {}", msg);
        }
    }
}