1use img2txt_rs::{load_image, print_image}; 2 3fn main() { 4 let img_path = "./examples/example3.jpg".to_string(); 5 let img = load_image(&img_path, 120).unwrap(); 6 print_image(img); 7}