vtracer 0.3.0

A cmd app to convert images into vector graphics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use vtracer::{Config, convert_image_to_svg};

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