convert_file 0.1.0

A simple tool for converting files to other formats
Documentation
1
2
3
4
pub fn convert_img(src: &str, dest: &str) {
    let img = image::open(src).unwrap();
    img.save(dest).unwrap();
}